# Function model construction and application

> AP Precalculus · Unit 1: Polynomial and Rational Functions
> Source: https://www.owlsprep.com/study/ap-precalculus-u1-function-model-construction-and-application/

This guide covers constructing linear, quadratic, higher-degree polynomial, and rational function models from context, tabular data, and points. You'll learn to use finite differences, fit exact models, and interpret results for AP Precalculus exam questions.

**Prerequisites:** Basic polynomial and rational function algebraic manipulation; Finite difference calculation; Solving systems of linear equations for unknown coefficients

## Learning objectives

- Construct polynomial function models from equally spaced data using finite differences
- Fit exact polynomial models to any set of distinct points
- Build rational function models from real-world contexts
- Interpret model outputs and end behavior in context

## What Is Function Model Construction and Application?

Function model construction and application is the core AP Precalculus skill of translating real-world contextual relationships or discrete data into formal polynomial or rational function equations, then using those equations to answer analytical questions. This topic contributes approximately 4-6% of the overall AP exam score, appearing in both multiple-choice and free-response sections. Unlike abstract algebraic problem-solving, this topic requires both technical accuracy and contextual sense-making: you must not only derive a correct function but also confirm it aligns with physical or practical constraints of the original scenario.

> **info**
>
> This skill is most commonly tested as a contextual multiple-choice question or the opening segment of a multi-step Unit 1 free-response question.

## Constructing Polynomial Models with Finite Differences

Finite differences is a technique to find the degree of a polynomial model when you have data with equally spaced input ($x$) values. The core rule is that an $n$th-degree polynomial will have constant $n$th finite differences.

**Finite Differences** — A method to calculate consecutive differences of output values to determine the degree of a polynomial that fits equally spaced input-output data. The order of the first set of constant differences equals the polynomial degree.

*Example:* A quadratic (degree 2) polynomial has constant second differences

To calculate differences, start with equally spaced $x$-values, compute first differences as $\Delta y_i = y_{i+1} - y_i$, then second differences as $\Delta^2 y_i = \Delta y_{i+1} - \Delta y_i$, and repeat until you get constant differences. Once you know the degree, you can write the general polynomial form and solve for coefficients.

**Worked example:** The table below gives the height $h(t)$ of a toy rocket at 1-second intervals after launch, where $t$ is time in seconds. Find the degree of the polynomial model and construct the model.

| $t$ | 0 | 1 | 2 | 3 |
|---|---|---|---|---|
| $h(t)$ | 8 | 27 | 36 | 35 |

1. Confirm $t$ is equally spaced: $\Delta t = 1$ for all consecutive entries, so finite differences applies.
2. Calculate first differences: $27-8=19$, $36-27=9$, $35-36=-1$. First differences: $[19, 9, -1]$.
3. Calculate second differences: $9-19=-10$, $-1 -9=-10$. Second differences are constant at $-10$, so the model is degree 2.
4. General quadratic form: $h(t) = at^2 + bt + c$. At $t=0$, $h=8$, so $c=8$. Substitute $t=1$ and $t=2$ to get the system:
5. $$a + b + 8 = 27 \implies a + b = 19 \\ 4a + 2b + 8 = 36 \implies 2a + b = 14$$
6. Solve: subtract the first equation from the second to get $a=-5$, then $b=24$. The final model is $h(t) = -5t^2 + 24t + 8$. Verify at $t=3$: $-5(9) + 24(3) + 8 = 35$, which matches the table.

> **Exam tip:** Always confirm your $x$-values are equally spaced before using this method. The exam regularly includes trick problems with unevenly spaced data that tempt students to use finite differences, which will give the wrong degree.

## Fitting Polynomial Models to Arbitrary Points

When you have a set of $k+1$ distinct points with any spacing, you can fit a unique polynomial of degree $k$ to those points exactly. This is because a degree $k$ polynomial has $k+1$ unknown coefficients, and each point gives one linear equation for the coefficients. This method works for any spacing of points, unlike finite differences, so it is the go-to method for non-equally spaced data, or when you already know the degree from context (e.g., projectile motion is always quadratic).

**Worked example:** A bakery models its daily profit $P(x)$ (in hundreds of dollars) from selling $x$ hundred croissants as a quadratic polynomial. The profit is \$1 hundred when $x=1$, \$4 hundred when $x=2$, and \$7 hundred when $x=3$. Construct the quadratic model.

1. General quadratic form: $P(x) = ax^2 + bx + c$. We have 3 points, so 3 equations for 3 coefficients.
2. Substitute each point into the general form:
3. $$a + b + c = 1 \\ 4a + 2b + c = 4 \\ 9a + 3b + c = 7$$
4. Subtract the first equation from the second: $3a + b = 3$. Subtract the second from the third: $5a + b = 3$.
5. Subtract the two new equations: $2a = 0 \implies a=0$, so $b=3$, then $c=1 - 0 - 3 = -2$. The simplified model (after dropping the zero $a$ term) is $P(x) = 3x - 2$.
6. Verify all points: $x=1: 3(1)-2=1$, $x=2: 6-2=4$, $x=3:9-2=7$, all match.

> **Exam tip:** If your leading coefficient solves to zero, always reduce the degree of your model. The exam expects simplified models, and leaving an unnecessary zero term can cost points in FRQ.

## Constructing and Applying Rational Function Models

Rational functions are ratios of two polynomials, and they are used to model scenarios with limiting behavior (horizontal asymptotes) that cannot be captured by polynomials, which grow without bound. Common real-world contexts for rational models on the AP exam include average cost, mixture concentrations, terminal velocity, and density. Most simple rational models on the exam are derived directly from the context rather than fit to points.

For example, average cost per unit is total cost divided by number of units: if total cost is $C(x) = C_0 + V(x)$, where $C_0$ is fixed cost and $V(x)$ is variable cost, then average cost $A(x) = \frac{C_0 + V(x)}{x}$, which is a rational function. For mixture problems, concentration is total solute divided by total volume, which gives a rational function with a horizontal asymptote equal to the concentration of the added solution.

**Worked example:** A tank initially contains 15 liters of pure water. You add $x$ liters of 30% sugar solution to the tank. The mixture is stirred evenly. Construct a rational model for the concentration $C(x)$ of sugar in the tank, find the concentration when 10 liters are added, and interpret the horizontal asymptote.

1. Total amount of sugar is the concentration of the added solution times the volume added: $0.3x$. Total volume of the mixture is the initial 15 liters plus the added $x$ liters: $15 + x$.
2. Concentration equals total sugar divided by total volume, so the model is $C(x) = \frac{0.3x}{x + 15}$, for $x \geq 0$.
3. For $x=10$, substitute: $C(10) = \frac{0.3(10)}{10 + 15} = \frac{3}{25} = 0.12$, or 12% sugar concentration.
4. The horizontal asymptote: numerator and denominator are both degree 1, so $y = 0.3$. This means as more 30% solution is added, the concentration of the mixture approaches 30%, which matches physical expectations.

> **Exam tip:** Always check that your rational model has the correct end behavior for the context. If your concentration model approaches 0 instead of 0.3 as $x$ grows, you have flipped the numerator and denominator—check immediately.

## AP-Style Practice Problems

**Check your understanding**

Test your understanding with this multiple-choice question:

1. Which of the following is the quadratic polynomial that passes through the points $(-1, 0)$, $(0, 1)$, and $(2, 9)$?

   - $y = 2x^2 + x + 1$
   - $y = x^2 + 2x + 1$
   - $y = 2x^2 - x + 1$
   - $y = x^2 - 2x + 1$

   *Answer:* $y = x^2 + 2x + 1$

   *Why:* Correct! All points satisfy the equation: $(-1): 1 - 2 + 1 = 0$, $(0): 1$, $(2): 4 + 4 + 1 = 9$. If you got a different answer, double-check how you substituted points into the general quadratic form.

**Worked example:** The table below shows the distance $d(t)$ (in meters) traveled by an accelerating car at 2-second intervals:

| $t$ (seconds) | 0 | 2 | 4 | 6 |
|---|---|---|---|---|
| $d(t)$ (meters) | 0 | 26 | 84 | 174 |

(a) Use finite differences to determine the degree of the polynomial model for $d(t)$.
(b) Construct the polynomial model for $d(t)$.
(c) Use the model to predict the distance traveled at $t=8$ seconds, and explain why the model is unlikely to be accurate for $t=100$ seconds.

1. (a) First, confirm $t$ is equally spaced with step size $\Delta t=2$. Calculate first differences: $26 - 0 = 26$, $84 - 26 = 58$, $174 - 84 = 90$. Calculate second differences: $58 - 26 = 32$, $90 - 58 = 32$. Second differences are constant, so the model is quadratic (degree 2).
2. (b) General quadratic form: $d(t) = at^2 + bt + c$. At $t=0$, $d(0)=0$, so $c=0$. Substitute $t=2$ and $t=4$:
3. $$a(2)^2 + b(2) = 26 \implies 2a + b = 13 \\ a(4)^2 + b(4) = 84 \implies 4a + b = 21$$
4. Subtract the first equation from the second: $2a=8 \implies a=4$, so $b=13 - 8 = 5$. The model is $d(t) = 4t^2 + 5t$. Verify at $t=6$: $4(36) + 5(6) = 174$, which matches the table.
5. (c) For $t=8$: $d(8) = 4(64) + 5(8) = 296$ meters. The model is a quadratic with a positive leading coefficient, so it predicts distance grows without bound as $t$ increases. A real car cannot accelerate indefinitely, so the model will not be accurate for large values of $t$ like 100 seconds.

**Worked example:** A small graphic design company has fixed monthly operating costs of \$3500, and variable costs of \$25 per client project they complete. Construct a rational function model for the average cost $A(x)$ per project, where $x$ is the number of projects completed in a month. What is the average cost per project when 100 projects are completed in a month? State the horizontal asymptote of $A(x)$ and interpret it in context.

1. Total monthly cost is fixed cost plus variable cost: $C(x) = 3500 + 25x$. Average cost per project is total cost divided by the number of projects, so the rational model is:
2. $$A(x) = \frac{3500 + 25x}{x} = \frac{3500}{x} + 25, \quad x>0$$
3. For 100 projects, substitute $x=100$: $A(100) = \frac{3500 + 25(100)}{100} = 60$. So the average cost per project is \$60 when 100 projects are completed.
4. The numerator and denominator are both degree 1, so the horizontal asymptote is at $y = 25$. In context, this means as the company completes more projects per month, the average cost per project approaches \$25, since the fixed operating cost is spread over more projects and becomes negligible per project.

## Common pitfalls

- **Wrong:** Using finite differences to find polynomial degree for unevenly spaced x-values
  - Why it fails: Students memorize the constant difference rule but forget it only holds for equally spaced inputs.
  - Correct: Always check the spacing between consecutive x-values first; if uneven, fit the polynomial by solving the system of equations for coefficients instead.
- **Wrong:** Forgetting to restrict the model domain to match the context, e.g., leaving negative x-values allowed for a model of box side length.
  - Why it fails: Students focus on getting the function equation right and ignore that real-world quantities cannot be negative.
  - Correct: After constructing any model, explicitly write the domain that matches the context, e.g., $x>0$ for all quantities like length or number of units.
- **Wrong:** In mixture concentration models, adding concentrations directly instead of calculating total solute as concentration × volume, e.g., writing $C(x) = \frac{0.3 + x}{15 + x}$ instead of $\frac{0.3x}{15+x}$.
  - Why it fails: Students confuse concentration (a ratio) with total amount of solute.
  - Correct: Always follow the formula $C = \frac{\text{total solute}}{\text{total solution}}$ and calculate total solute first before building the model.
- **Wrong:** Using one fewer coefficient than needed when fitting a polynomial, e.g., using 2 coefficients for a quadratic model, leading to an inconsistent system.
  - Why it fails: Students forget the constant term counts as a coefficient.
  - Correct: Always count coefficients = degree + 1, which must equal the number of points you are fitting.
- **Wrong:** Leaving a higher-degree term with a zero leading coefficient in the final model, e.g., writing $P(x) = 0x^2 + 3x - 2$ instead of $P(x) = 3x - 2$.
  - Why it fails: Students assume n points always require a degree n-1 polynomial, so they keep the unnecessary term.
  - Correct: After solving the system, simplify the model by removing any terms with zero coefficients and reduce the degree accordingly.

## Cheatsheet

| Category | Rule / Formula | Key Notes |
| --- | --- | --- |
| Finite Difference Degree Rule | $n$th degree polynomial with equally spaced $x$ has constant $n$th finite differences | Only applies to equally spaced $x$-values; requires $n+1$ points for degree $n$ |
| Polynomial Fitting to Points | Degree $k$ polynomial has $k+1$ unknown coefficients → needs $k+1$ distinct points for unique solution | Drop any terms with zero leading coefficient to simplify final model |
| Rational Model Construction | Concentration $= \frac{\text{total solute}}{\text{total volume}}$, Average cost $= \frac{\text{total cost}}{\text{number of units}}$ | Horizontal asymptote matches long-run contextual behavior |
| Contextual Modeling | Always restrict domain to match real-world constraints | Negative inputs for quantities like length/volume are never valid |

## What's next

Now that you've mastered function model construction and application, you have a foundational skill for all applied problems in AP Precalculus and future calculus courses. Translating real-world scenarios into mathematical functions is the first step to solving almost every contextual exam question, so practicing this skill will pay off across all units. Next, you will explore more advanced properties of polynomials and rational functions, including their graphs, zeros, and asymptotic behavior, where your ability to build and interpret models will help you connect abstract properties to real-world meaning.

- [Unit 1: Polynomial and Rational Functions Overview](https://www.owlsprep.com/study/ap-precalculus-u1-overview/)
- [Exponential and Logarithmic Functions Overview](https://www.owlsprep.com/study/ap-precalculus-u2-overview/)
- [Change in arithmetic and geometric sequences](https://www.owlsprep.com/study/ap-precalculus-u2-change-in-arithmetic-and-geometric/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-precalculus-u1-function-model-construction-and-application/
