← MathScape

Recognizing Function Families

MATH161
Reference: Stewart 1.2  •  Chapter: 1  •  Section: 2

Navigation: Wiki Home > Skills > Recognizing Function Families

Recognizing Function Families

The Art of Choosing the Right Model

You've learned about linear, polynomial, power, rational, trigonometric, exponential, and logarithmic functions. But in real problems, nobody tells you which one to use. You see data, a description, or a graph—and you must decide: What type of function fits this situation?

This skill is about pattern recognition. When you hear "constant rate of change," you should immediately think linear. When you see data curving upward with the curve getting steeper, you might think exponential or polynomial. When something oscillates, you reach for trigonometric.

Developing this intuition now will pay dividends throughout calculus and beyond.

Prerequisite Map

This skill
Recognizing Function Families

Quick Reference

Property Value
Concept Essential Functions
Chapter Chapter 1, Section 2
Difficulty Intermediate
Time ~20 minutes

The Function Family Catalog

Quick Recognition Guide

Family Key Signature Graph Shape Example Signal Phrases
Linear Constant rate of change Straight line "increases by 5 each year," "proportional to"
Quadratic Rate of change itself changes linearly Parabola (U or ∩) "accelerating," "maximum/minimum value"
Polynomial Multiple turning points Smooth curves with bends "cubic," "several local extrema"
Power $y = kx^a$ relationship Curves through origin "varies as the square/cube," "proportional to $x^n$"
Reciprocal $y = k/x^n$ Asymptotic curves "inversely proportional," "halves when x doubles"
Exponential Constant percentage change J-curve (rapid growth/decay) "doubles every," "half-life," "compound interest"
Logarithmic Rapid then slow growth Flattening curve "diminishing returns," "decibels," "Richter scale"
Trigonometric Periodic oscillation Waves "cycles," "seasonal," "vibration," "tide"

Detailed Recognition Patterns

Linear: $y = mx + b$

Recognize by:

Example: "A plumber charges \$50 for a house call plus \$30 per hour." → Linear: $C = 30t + 50$

Quadratic: $y = ax^2 + bx + c$

Recognize by:

Example: "A ball is thrown upward and falls back down." → Quadratic: height vs. time is a parabola

Exponential: $y = ab^x$ or $y = ae^{kx}$

Recognize by:

Example: "A population grows by 3% per year." → Exponential: $P = P_0(1.03)^t$

Power: $y = kx^a$

Recognize by:

Example: "The area of a circle depends on its radius." → Power: $A = \pi r^2$

Reciprocal/Rational: $y = k/x$ or $y = k/x^2$

Recognize by:

Example: "Light intensity decreases as the square of distance." → Inverse square: $I = k/d^2$

Trigonometric: $y = A\sin(Bx + C)$ or cosine

Recognize by:

Example: "Average monthly temperature varies seasonally." → Trigonometric: temperature fluctuates with a 12-month period

Logarithmic: $y = a + b\ln x$

Recognize by:

Example: "Learning speed is fast at first, then plateaus." → Logarithmic behavior

Decision Tree

graph TD
    Q1{"Is the pattern<br/>repeating/periodic?"}
    Q1 -->|Yes| R1["Trigonometric"]
    Q1 -->|No| Q2{"Is the rate of<br/>change constant?"}

    Q2 -->|Yes| R2["Linear"]
    Q2 -->|No| Q3{"Constant percentage<br/>change?"}

    Q3 -->|Yes| R3["Exponential"]
    Q3 -->|No| Q4{"Inversely<br/>proportional?"}

    Q4 -->|Yes| R4["Reciprocal/Rational"]
    Q4 -->|No| Q5{"One max or min<br/>with U-shape?"}

    Q5 -->|Yes| R5["Quadratic"]
    Q5 -->|No| Q6{"Fast then slow<br/>growth (or slow then fast)?"}

    Q6 -->|Fast then slow| R6["Logarithmic"]
    Q6 -->|Other curved| R7["Power or Higher Polynomial"]

Practice Problems

Level 1 Matching Descriptions to Functions

Match each description to the most appropriate function family:

  1. The height of a tide over the course of a day
  2. The value of a car depreciates by 15% each year
  3. The number of bacteria doubles every hour
  4. The cost of renting a car is \$40 per day
  5. The height of a projectile thrown upward

Choices: Linear, Quadratic, Exponential, Trigonometric

Thought Process

Look for keywords:

  • "over the course of a day" with tides suggests repeating cycles → trigonometric
  • "depreciates by 15% each year" is constant percentage → exponential (decay)
  • "doubles every hour" is constant percentage growth → exponential
  • "\$40 per day" with no other fees is constant rate → linear
  • "projectile thrown upward" is classic parabolic motion → quadratic
Show Answer

(a) Height of tide → Trigonometric (tides follow periodic cycles)

(b) Car depreciates by 15% each year → Exponential (constant percentage decay)

(c) Bacteria doubles every hour → Exponential (constant percentage growth)

(d) \$40 per day → Linear (constant rate of change)

(e) Projectile thrown upward → Quadratic (parabolic trajectory under gravity)

Level 2 Identifying from Data

Examine each data table and identify the most likely function family:

(a) | $x$ | 0 | 1 | 2 | 3 | 4 | |-----|---|---|---|---|---| | $y$ | 3 | 6 | 12 | 24 | 48 |

(b) | $x$ | 1 | 2 | 3 | 4 | 5 | |-----|---|---|---|---|---| | $y$ | 100 | 50 | 33.3 | 25 | 20 |

(c) | $x$ | 0 | 1 | 2 | 3 | 4 | |-----|---|---|---|---|---| | $y$ | 5 | 8 | 11 | 14 | 17 |

Thought Process

Compute differences and ratios:

(a) Check ratios: $6/3 = 2$, $12/6 = 2$, $24/12 = 2$, $48/24 = 2$. Constant ratio → exponential.

(b) Notice $y \approx 100/x$. Check: $100/1 = 100$, $100/2 = 50$, $100/3 \approx 33.3$... This is reciprocal.

(c) Check differences: $8-5 = 3$, $11-8 = 3$, $14-11 = 3$, $17-14 = 3$. Constant difference → linear.

Show Answer

(a) Exponential

The ratio between consecutive $y$-values is constant: $6/3 = 12/6 = 24/12 = 48/24 = 2$.

This is $y = 3 \cdot 2^x$.

(b) Reciprocal (Power with negative exponent)

The values are approximately $y = 100/x$:

  • $x=1$: $100/1 = 100$ ✓
  • $x=2$: $100/2 = 50$ ✓
  • $x=3$: $100/3 \approx 33.3$ ✓

This is $y = 100x^{-1}$.

(c) Linear

The first differences are constant: $8-5 = 11-8 = 14-11 = 17-14 = 3$.

This is $y = 3x + 5$.

Level 3 Choosing Models from Scenarios

For each scenario, (i) identify the appropriate function family, and (ii) write a possible equation.

  1. A savings account earns 4% annual interest, compounded yearly. You start with \$1000.
  2. The volume of a cube depends on its side length.
  3. The loudness of sound decreases as you move away from the source, following an inverse square law.
  4. The average temperature in Chicago follows a seasonal pattern, peaking in July and reaching its minimum in January.
Thought Process

(a) "4% annual interest" = constant percentage growth → exponential The formula for compound interest is $A = P(1 + r)^t$.

(b) "Volume of a cube" with side length $s$ is $V = s^3$ → power function

(c) "Inverse square law" → reciprocal with exponent $-2$

(d) "Seasonal pattern" with annual cycle → trigonometric with period 12 months

Show Answer

(a) Exponential $$A = 1000(1.04)^t$$ where $t$ is years and $A$ is the account balance.

(b) Power function (cubic) $$V = s^3$$ where $s$ is the side length.

(c) Inverse square (power with $a = -2$) $$I = \frac{k}{r^2}$$ where $r$ is distance and $k$ is a constant depending on the source.

(d) Trigonometric $$T = T_{avg} + A\cos\left(\frac{2\pi}{12}(m - 7)\right)$$ where $m$ is the month (1-12), $T_{avg}$ is the average temperature, $A$ is the amplitude, and the shift by 7 puts the maximum at July.

Level 4 Distinguishing Similar Patterns

Both exponential and quadratic functions can show rapid growth. Explain how you would distinguish between them from:

  1. A data table with 5 points
  2. The verbal description of a phenomenon
  3. A graph
Thought Process

Think about the defining characteristics:

  • Quadratic: second differences are constant
  • Exponential: ratios of consecutive values are constant

Consider what each looks like visually and how they're described in words.

Show Answer

(a) From a data table:

Quadratic test: Compute first differences, then second differences. If second differences are constant, it's quadratic.

Exponential test: Compute ratios of consecutive $y$-values. If ratios are constant, it's exponential.

Example: | $x$ | 0 | 1 | 2 | 3 | 4 | |-----|---|---|---|---|---| | $y$ (quad) | 1 | 4 | 9 | 16 | 25 | | $y$ (exp) | 1 | 2 | 4 | 8 | 16 |

  • Quadratic: First differences are 3, 5, 7, 9 (not constant). Second differences are 2, 2, 2 (constant!) ✓
  • Exponential: Ratios are 2, 2, 2, 2 (constant!) ✓

(b) From verbal description:

Quadratic: Look for additive change in the rate of change. "The car accelerates at a constant rate" → distance is quadratic in time.

Exponential: Look for percentage/multiplicative language. "Doubles every 3 hours," "grows by 5% per year," "half-life of 10 days"

(c) From a graph:

Quadratic: Has a vertex (turning point). Either opens up or down. Symmetric about a vertical line.

Exponential: No turning point. Always increasing or always decreasing. One horizontal asymptote. Gets arbitrarily steep on one end.

Key visual test: Exponential curves have a horizontal asymptote; parabolas do not.

Level 5 Real-World Model Selection

A researcher collects data on the spread of a new app:

Week Users (thousands)
0 0.5
2 1.2
4 2.8
6 6.5
8 15
10 28
12 40
14 48
16 50
  1. Why is a simple linear model inappropriate for this data?
  2. Why is a simple exponential model also inappropriate?
  3. Describe the qualitative behavior of the data. What happens early? What happens late?
  4. This pattern is called **logistic growth**. Research suggests the model form $P(t) = \frac{L}{1 + e^{-k(t-t_0)}}$. Based on the data, estimate the carrying capacity $L$.
  5. Why might app adoption follow logistic rather than exponential growth?
Thought Process

Look at the data carefully:

  • Early growth: $0.5 \to 1.2 \to 2.8 \to 6.5$ — roughly doubling (exponential-like)
  • Late growth: $40 \to 48 \to 50$ — slowing down dramatically

Neither linear (constant rate) nor exponential (constant ratio) fits the whole dataset.

The "S-curve" pattern is characteristic of logistic growth, where there's a ceiling (carrying capacity).

Show Answer

(a) Why not linear?

The growth rate is clearly not constant. From week 0 to 2, users increase by 0.7 thousand. From week 6 to 8, they increase by 8.5 thousand. A linear model would predict constant increases.

(b) Why not exponential?

Check ratios:

  • Weeks 0→2: $1.2/0.5 = 2.4$
  • Weeks 6→8: $15/6.5 = 2.3$
  • Weeks 12→14: $48/40 = 1.2$
  • Weeks 14→16: $50/48 = 1.04$

The ratio is not constant—it decreases over time. Pure exponential growth would maintain a constant ratio.

(c) Qualitative behavior:

Early: Rapid growth that accelerates (exponential-like). The user base is small, so there's lots of room to grow.

Late: Growth slows dramatically and approaches a ceiling. The market is becoming saturated—most potential users have already adopted.

Overall: S-shaped curve (sigmoid), slow start, rapid middle growth, slow approach to maximum.

(d) Carrying capacity:

The data appears to be leveling off around 50 thousand users. So $L \approx 50$.

(More precisely, logistic curves approach $L$ asymptotically, so the true $L$ might be slightly higher, perhaps 52-55, but 50 is a reasonable estimate from the data shown.)

(e) Why logistic growth?

App adoption is limited by:

  • Finite market size: There are only so many potential users
  • Network effects: Early growth is slow (few people to recommend it), accelerates as more adopt, then slows as the remaining non-adopters are harder to reach
  • Saturation: Eventually, everyone who wants the app has it

Pure exponential growth assumes unlimited resources and no constraints—unrealistic for most real phenomena. Logistic growth captures the reality of finite markets.

Mastery Checklist

Mental Model

The Function Family Detective:

Think of yourself as a detective matching clues to suspects:

Clue Suspect
"Per unit" or "each" with constant amount Linear
"Doubles/halves every" Exponential
"Inversely proportional" Reciprocal
"Peaks and valleys repeat" Trigonometric
"Max/min with symmetric curve" Quadratic
"Fast then slow" Logarithmic
"Slow then fast then slow" (S-curve) Logistic

The more "clues" you gather (from data patterns, verbal descriptions, physical reasoning), the more confident your identification.


Connections

Looking back:

Looking ahead:

Real-world connections:


Previous Up Next
Power Functions Section Index Ch1 Sec3 Skills

Last updated: 2026-01-22