Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Function Model Selection and Assumption Articulation

Lesson ~11 min read 8 MCQs

In simple terms: In simple terms, this topic is about choosing the right type of function to represent a real-world situation and stating the rules and assumptions that make your model work.

Why this matters

Imagine your school's robotics club, the "Circuit Breakers," wants to sell custom t-shirts to fund a trip to a competition in Dallas. You need to figure out pricing. A local print shop charges a $100 setup fee plus $8 per shirt. You also know that if you price the shirts too high, fewer people will buy them. How do you model your costs? How do you model your potential profit? Is one type of equation enough?

Choosing the right mathematical tool—the right type of function—is the first step to answering these questions and making a smart decision. In this lesson, we'll learn how to analyze a situation, select the best function model, and clearly state the assumptions and limitations that come with it. This is how math gets used to make real-world decisions.

Linear cost model for the robotics club t-shirts, showing setup fee and per-shirt cost.

Concept overview

flowchart TD
    A[Analyze scenario or data] --> B{Is rate of change constant?};
    B -- Yes --> C[Use Linear Model];
    B -- No --> D{Symmetric data? <br/> One max/min?};
    D -- Yes --> E[Use Quadratic Model];
    D -- No --> F{Multiple turning points?};
    F -- Yes --> G[Use Higher-Degree Polynomial];
    F -- No --> H{Do rules change at specific points?};
    H -- Yes --> I[Use Piecewise Model];
    H -- No --> J[Consider other function types];
This diagram is a flowchart that guides the user through selecting a function model. It starts with analyzing the data and asks a series of questions about the rate of change, symmetry, turning points, and rules to determine whether a linear, quadratic, polynomial, or piecewise model is most appropriate.

Core explanation

Hello! I'm Saavi, and I'm so glad you're here. Today, we're moving from pure calculation into the art of mathematical modeling. Think of it like this: you have a toolbox filled with different functions (lines, parabolas, and more). Your job is to look at a real-world problem and pick the perfect tool for the job.

Part 1: Choosing Your Function Model

How do you know which function to pick? You look for clues in the problem description or the data.

Clue #1: A Constant Rate of Change → Linear Function

If a quantity changes by the same amount for each unit increase in another, you're looking at a linear function. The classic form is f(x) = mx + b.

  • The Telltale Sign
    The rate of change is constant.
  • Example
    A car service in Chicago charges a $5 flat fee and then $2.50 per mile. The cost increases by exactly $2.50 for every single mile driven. That constant rate is your slope, m. The cost function would be C(d) = 2.50d + 5.
A linear function showing constant rate of change for a car service.

Clue #2: A Symmetrical Shape or Changing Rate → Quadratic Function

Quadratic functions are perfect for two common scenarios. They make the U-shape of a parabola, f(x) = ax^2 + bx + c.

  • The Telltale Signs:
    1. Data that is roughly symmetrical, rising to a single maximum point and then falling (or falling to a minimum and rising). Think of a basketball shot: it goes up, reaches a peak height, and comes back down.
A quadratic function modeling projectile motion, showing a symmetrical parabolic path.
2.  A rate of change that is *itself* changing at a constant rate. This is where most students get stuck. For a linear function, the *value* changes. For a quadratic, the *rate of change* changes—but it does so linearly.
  • Geometric Context: Area often leads to a quadratic model. If you have a square photo with side length s, its area is A = s^2. If you're building a rectangular dog run, the area will involve multiplying two dimensions, often leading to a quadratic.

Clue #3: Multiple Bumps or 3D Space → Cubic & Higher-Degree Polynomials

When things get more complex, you may need a polynomial with more curves.

  • The Telltale Signs:

    1. 1
      Multiple "turning points"
      The graph has several local maximums or minimums. Think of a roller coaster with multiple hills and valleys.
    2. 2
      Volume
      Geometric problems involving three dimensions, like the volume of a box, often result in cubic functions. If you make a box by cutting squares of side length x from the corners of a piece of cardboard, the volume will be a cubic function of x.
  • The Finite Differences Test: This is a powerful tool when you have a table of data.

    • Calculate the differences between consecutive y-values (the "first differences"). If they are constant, the function is linear.
    • If not, calculate the differences between those differences (the "second differences"). If they are constant, the function is quadratic.
    • If the nth differences are constant, the function is a polynomial of degree n.
  • The n+1 Points Rule: A set of n+1 points with unique x-values can be modeled perfectly by a polynomial of degree at most n. So, if you have 4 data points, you can find a cubic function (degree 3) that passes through all of them.

Clue #4: Different Rules for Different Intervals → Piecewise-Defined Function

Sometimes, a situation doesn't follow one single rule. The rules change depending on the input value.

  • The Telltale Sign
    You see phrases like "up to," "after that," "for the first 50," or "for any amount over 100."
  • Example
    Your cell phone plan. You might pay $40 for the first 10 GB of data, but then $10 for each additional GB you use. The cost function has two different pieces: one for when you use 10 GB or less, and another for when you use more.
        / 40,                  if 0 <= x <= 10
C(x) = {
        \ 40 + 10(x - 10),    if x > 10

Part 2: Stating Your Assumptions and Restrictions

Picking the function is only half the battle. A model is a simplification of reality. You must state the rules you're playing by. This is what separates a guess from a mathematical model.

Assumptions: The "What Ifs"

Assumptions are conditions you accept as true for your model to work, even if they aren't perfect in the real world.

  • What is consistent?
    In our t-shirt example, we assume the cost of a blank shirt from the supplier ($8) doesn't suddenly jump to $9 halfway through our order.
  • How do quantities change together?
    When modeling profit vs. price, we might assume a smooth, predictable relationship where raising the price always lowers demand. In reality, a price jump from $19.99 to $20.00 might have a bigger psychological impact than a jump from $21.00 to $21.02. Our model simplifies this.

Restrictions: The "Rules of the Game"

Restrictions define the valid inputs (domain) and outputs (range) for your model based on its context.

  • Domain Restrictions (Inputs)
    What x values make sense?
    • Contextual Clue: If x represents the number of t-shirts sold, x cannot be negative. It also can't be a fraction; you can't sell 23.7 shirts. So, the domain is non-negative integers. x >= 0, x is an integer.
    • Mathematical Clue: If your model is f(x) = 1 / (x-2), the domain must exclude x=2 to avoid division by zero.
  • Range Restrictions (Outputs)
    What y values make sense?
    • Contextual Clue: If h(t) models the height of a thrown baseball, the height can't be negative (unless you're on a cliff).
    • Rounding: If your function calculates the number of buses needed for a field trip and gives you 4.3, the practical range value is 5. You must round up. The range is restricted to positive integers.

Articulating these points shows you understand that math isn't just about numbers; it's about using numbers to describe the world thoughtfully.

Worked examples

Let's put these ideas into practice with a couple of examples.

Example 1

The Softball Toss

Priya is on her school's softball team. She tosses a ball straight up into the air. Her friend Marcus records the height of the ball at different times.

Time (s) Height (ft)
0 5
0.5 17
1.0 21
1.5 17
2.0 5

Problem: A. What type of function would best model the height of the ball as a function of time? B. What are the key assumptions and restrictions for this model?

Solution:

Part A: Identify the Function Type

  1. 1
    Analyze the Data
    Look at the Height column. The ball starts at 5 ft, goes up to a peak of 21 ft, and then comes back down. Notice the symmetry: the height at 0.5s (17 ft) is the same as the height at 1.5s. The height at 0s (5 ft) is the same as at 2.0s.
  2. 2
    Connect to Function Properties
    This symmetry around a single maximum value (21 ft at t=1.0s) is the classic signature of a quadratic function.
  3. 3
    Check Finite Differences (Optional but good practice)
    • First differences: 17-5=12, 21-17=4, 17-21=-4, 5-17=-12. These are not constant.
    • Second differences: 4-12=-8, -4-4=-8, -12-(-4)=-8. The second differences are constant (-8). This confirms it's a quadratic model.

Answer for A: A quadratic function is the most appropriate model because the data is symmetric around a single maximum value, and the second differences are constant.

Part B: State Assumptions and Restrictions

  1. 1
    Assumptions
    What are we ignoring?
    • We assume there is no wind resistance or other atmospheric effects. We're modeling a "perfect" toss in a vacuum.
    • We assume gravity is the only force acting on the ball after it leaves Priya's hand.
  2. 2
    Restrictions
    What are the sensible limits on our variables?
    • Domain (Time t): Time can't be negative, so t >= 0. The ball also hits the ground (or is caught) at some point. Based on the data, the flight seems to last a little over 2 seconds. A reasonable domain might be 0 <= t <= 2.0 if we assume it's caught at the same height it was thrown.
    • Range (Height h): The height cannot be negative. The minimum height in the data is 5 ft (the release point), and the maximum is 21 ft. So, a reasonable range is 5 <= h <= 21.
Example 2

The Bulk Discount

A small business in Atlanta sells custom-printed coffee mugs. For orders of 50 mugs or fewer, the price is $10 per mug. If a customer orders more than 50 mugs, the price for the entire order drops to $8 per mug to encourage large orders.

Problem: A. Construct a function C(x) that models the total cost for an order of x mugs. B. State any restrictions on the domain of your function.

Solution:

Part A: Construct the Function

  1. 1
    Identify the "Break Point"
    The rule for the cost changes at x = 50. This is a huge clue that we need a piecewise-defined function.
  2. 2
    Define the First Piece
    For orders of 50 or fewer (x <= 50), the cost is simply $10 times the number of mugs.
    • Cost = 10x for 0 < x <= 50.
  3. 3
    Define the Second Piece
    For orders of more than 50 (x > 50), the cost for the entire order is $8 times the number of mugs.
    • Cost = 8x for x > 50.
  4. 4
    Combine into a Piecewise Function
            / 10x,   if 0 < x <= 50
    C(x) = {
            \ 8x,    if x > 50

Part B: State Domain Restrictions

  1. 1
    Consider the Context
    x represents the number of coffee mugs.
  2. 2
    Apply Logic
    • Can you order a negative number of mugs? No. So, x > 0.
    • Can you order a fraction of a mug? No. So, x must be an integer.
  3. 3
    State the Restriction Clearly
    The domain of C(x) is the set of positive integers.

This example shows how a real-world business rule directly translates into the structure of a piecewise function. Forgetting the integer restriction is a common oversight.

Data for Priya's softball toss, illustrating the symmetrical pattern of a quadratic function.

Try it yourself

Ready to try on your own? Here are a couple of scenarios to test your modeling skills.

1. The Garden Box

Carlos is building a rectangular garden box with an open top. He has a piece of wood that is 12 feet long and 8 feet wide. He plans to cut out identical squares of side length x from each of the four corners and then fold up the sides.

  • Your task:
    • Write a function V(x) that represents the volume of the box. What type of function is it?
    • What are the practical restrictions on the domain of x? (Hint: Think about the dimensions of the wood. How big can the cutout x be before the sides disappear?)

2. The Phone Bill

Maya's phone plan in Boston has the following structure:

  • A flat fee of $35 per month, which includes up to 5 GB of data.

  • For any data usage over 5 GB, she is charged an additional $8 per GB.

  • Your task:

    • Construct a piecewise-defined function C(g) that models Maya's total monthly cost for using g gigabytes of data.
    • What is the cost for using 4.5 GB? What about 7 GB?

Give these a shot! The key is to translate the words into mathematical relationships and then think about the real-world limits.