Math ClubMath Club
v1 · padrão canônico

Lesson 3 — Linear (Affine) Functions

Linear function f(x) = ax + b. Slope as a CONSTANT rate of change — conceptual bridge to the derivative.

Used in: 1.º ano EM

f(x)=ax+bf(x) = ax + b

Linear (affine) function: the coefficient a is the rate of change (how much y changes when x increases by 1 unit). The b is the value of y when x = 0. When b = 0, it is a linear function. When a = 0, it is a constant function.

Choose your door

Rigorous notation, full derivation, hypotheses

Definition and properties

  • aa: slope (angular coefficient, inclination)
  • bb: y-intercept (linear coefficient)
  • Graph: a straight line. a>0a > 0: increasing. a<0a < 0: decreasing. a=0a = 0: constant.
f(x2)f(x1)x2x1=a\frac{f(x_2) - f(x_1)}{x_2 - x_1} = a
(1)
what this means · Rate of change between two points on the line. For an affine function, this value is CONSTANT — it does not depend on which pair of points you choose. It is this constancy that characterizes the affine function among all others.

"The slope of a line that passes through two points (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) is m=(y2y1)/(x2x1)m = (y_2 - y_1)/(x_2 - x_1)." — OpenStax College Algebra 2e, §2.2

Zero of the function and intercepts

f(x)=0    x=b/af(x) = 0 \iff x = -b/a (when a0a \neq 0). The pair (0,b)(0, b) is the vertical intercept. The pair (b/a,0)(-b/a, 0) is the zero (or horizontal intercept).

Uniqueness theorem: two points determine a line

Proof (sketch). Existence: define aa by the formula above and b=y1ax1b = y_1 - a x_1. One verifies f(x1)=y1f(x_1) = y_1 by construction, and f(x2)=a(x2x1)+y1=(y2y1)+y1=y2f(x_2) = a(x_2 - x_1) + y_1 = (y_2 - y_1) + y_1 = y_2. Uniqueness: if g(x)=ax+bg(x) = a' x + b' also satisfies g(xi)=yig(x_i) = y_i, then a=(y2y1)/(x2x1)=aa' = (y_2 - y_1)/(x_2 - x_1) = a and b=y1ax1=bb' = y_1 - a' x_1 = b. ∎

Composition and operations

Let f(x)=a1x+b1f(x) = a_1 x + b_1 and g(x)=a2x+b2g(x) = a_2 x + b_2. Then:

  • Sum: (f+g)(x)=(a1+a2)x+(b1+b2)(f + g)(x) = (a_1 + a_2) x + (b_1 + b_2) — affine, with slopes added.
  • Composition: (fg)(x)=a1(a2x+b2)+b1=a1a2x+(a1b2+b1)(f \circ g)(x) = a_1 (a_2 x + b_2) + b_1 = a_1 a_2 x + (a_1 b_2 + b_1) — affine, with slopes multiplied.
  • Inverse (if a10a_1 \neq 0): f1(y)=(yb1)/a1f^{-1}(y) = (y - b_1)/a_1 — also affine, with slope 1/a11/a_1.

The set of invertible affine functions (a0a \neq 0) under composition forms a group — the structure (R×R,)(\mathbb{R}^* \times \mathbb{R}, \circ). This observation will be used in linear algebra (Lesson 31+) and in affine geometry.

Family of parallel lines

xyb=-3b=-2b=-1b=0b=1b=2b=3y = x + bfixed a, varying b

Family of lines with the same slope a = 1 and different intercepts b. Vertical translation: changing b only shifts the line up or down, without rotating it.

Family of concurrent lines

xya=0.3a=1a=2a=-1a=-2.5(0, 1)y = ax + 1fixed b, varying a

Family with the same intercept (0, 1) and different slopes — all crossing at that point. Rotation: changing a rotates the line around the intercept.

Worked examples

Five examples with increasing difficulty — from direct evaluation of a given line to modeling a break-even point for transport plans. Each example cites its source: the original problem always comes from an open-licensed book.

Exercise list

45 exercises · 11 with worked solution (25%)

Application 20Understanding 10Modeling 12Challenge 3
  1. Ex. 3.1Modeling

    Terry is hiking down a steep hill. Her elevation, E(t)E(t), in feet after tt seconds is E(t)=300070tE(t) = 3000 - 70t. What does this affine model tell us about her initial elevation and how it changes over time?

    Select the correct option
    Select an option first
    Show solution
    In E(t)=300070tE(t) = 3000 - 70t, the initial value E(0)=3000E(0) = 3000 is the starting elevation (feet), and 70-70 is the rate of change: the elevation drops 70 feet each second.
    Show step-by-step (with the why)
    1. Compare with f(t)=at+bf(t) = at + b: here a=70a = -70 and b=3000b = 3000.
    2. The y-intercept b=3000b = 3000 is the value at t=0t = 0: the initial elevation.
    3. The slope a=70a = -70 indicates a drop of 70 feet per second.
    4. Conclusion: starts at 3,000 feet and descends 70 ft/s.
  2. Ex. 3.2ModelingAnswer key

    Jessica is walking home from a friend's house. After 2 minutes she is 1.4 miles from home; 12 minutes after leaving, she is 0.9 miles away. What is her speed in miles per hour?

    Select the correct option
    Select an option first
    Show solution
    The rate of change is a=(0,91,4)/(122)=0,5/10=0,05a = (0{,}9 - 1{,}4)/(12 - 2) = -0{,}5/10 = -0{,}05 miles per minute. Converting: 0,05×60=30{,}05 \times 60 = 3 miles per hour.
    Show step-by-step (with the why)
    1. Compute the change in distance: 0,91,4=0,50{,}9 - 1{,}4 = -0{,}5 mi in 10 minutes.
    2. Rate per minute: 0,5/10=0,050{,}5/10 = 0{,}05 mi/min.
    3. Convert to mi/h: 0,05×60=30{,}05 \times 60 = 3 mi/h.
  3. Ex. 3.3ModelingAnswer key

    A boat is 100 miles from the marina, sailing directly toward it at 10 miles per hour. Write an equation for the distance of the boat from the marina after tt hours.

    Select the correct option
    Select an option first
    Show solution
    The boat starts 100 miles away and approaches at 10 mi/h, so D(t)=10010tD(t) = 100 - 10t. The slope a=10a = -10 indicates the distance decreases by 10 miles per hour.
  4. Ex. 3.4Understanding

    Determine whether the function f(x)=4x+3f(x) = 4x + 3 is increasing or decreasing.

    Select the correct option
    Select an option first
    Show solution
    In f(x)=4x+3f(x) = 4x + 3, the slope a=4>0a = 4 > 0, therefore the function is increasing.
  5. Ex. 3.5Understanding

    Determine whether the function a(x)=52xa(x) = 5 - 2x is increasing or decreasing.

    Select the correct option
    Select an option first
    Show solution
    In a(x)=52xa(x) = 5 - 2x, the slope a=2<0a = -2 < 0, therefore the function is decreasing.
  6. Ex. 3.6Understanding

    Determine whether the function b(x)=83xb(x) = 8 - 3x is increasing or decreasing.

    Select the correct option
    Select an option first
    Show solution
    In b(x)=83xb(x) = 8 - 3x, the slope a=3<0a = -3 < 0, therefore the function is decreasing.
  7. Ex. 3.7UnderstandingAnswer key

    Determine whether the function j(x)=12x3j(x) = \dfrac{1}{2}x - 3 is increasing or decreasing.

    Select the correct option
    Select an option first
    Show solution
    In j(x)=12x3j(x) = \frac{1}{2}x - 3, the slope a=12>0a = \frac{1}{2} > 0, therefore the function is increasing.
  8. Ex. 3.8Application

    Calculate the slope of the line passing through the points (2,4)(2, 4) and (4,10)(4, 10).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=10442=62=3m = \frac{10 - 4}{4 - 2} = \frac{6}{2} = 3.
  9. Ex. 3.9ApplicationAnswer key

    Calculate the slope of the line passing through the points (1,5)(1, 5) and (4,11)(4, 11).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=11541=63=2m = \frac{11 - 5}{4 - 1} = \frac{6}{3} = 2.
  10. Ex. 3.10Application

    Calculate the slope of the line passing through the points (1,4)(-1, 4) and (5,2)(5, 2).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=245(1)=26=13m = \frac{2 - 4}{5 - (-1)} = \frac{-2}{6} = -\frac{1}{3}.
  11. Ex. 3.11Application

    Calculate the slope of the line passing through the points (8,2)(8, -2) and (4,6)(4, 6).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=6(2)48=84=2m = \frac{6 - (-2)}{4 - 8} = \frac{8}{-4} = -2.
  12. Ex. 3.12ApplicationAnswer key

    Calculate the slope of the line passing through the points (6,11)(6, 11) and (4,3)(-4, 3).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=31146=810=45m = \frac{3 - 11}{-4 - 6} = \frac{-8}{-10} = \frac{4}{5}.
    Show step-by-step (with the why)
    1. Compute Δy=311=8\Delta y = 3 - 11 = -8.
    2. Compute Δx=46=10\Delta x = -4 - 6 = -10.
    3. Divide: m=8/10=4/5m = -8 / -10 = 4/5.
  13. Ex. 3.13ApplicationAnswer key

    Find the equation of the affine function satisfying f(5)=4f(-5) = -4 and f(5)=2f(5) = 2.

    Select the correct option
    Select an option first
    Show solution
    The slope is m=2(4)5(5)=610=35m = \frac{2-(-4)}{5-(-5)} = \frac{6}{10} = \frac{3}{5}. Using f(5)=4f(-5) = -4: b=435(5)=4+3=1b = -4 - \frac{3}{5}(-5) = -4 + 3 = -1. Therefore f(x)=35x1f(x) = \frac{3}{5}x - 1.
  14. Ex. 3.14Application

    Find the equation of the affine function satisfying f(1)=4f(-1) = 4 and f(5)=1f(5) = 1.

    Select the correct option
    Select an option first
    Show solution
    The slope is m=145(1)=36=12m = \frac{1-4}{5-(-1)} = \frac{-3}{6} = -\frac{1}{2}. Using (1,4)(-1, 4): b=4(12)(1)=412=72b = 4 - (-\frac{1}{2})(-1) = 4 - \frac{1}{2} = \frac{7}{2}. Therefore f(x)=12x+72f(x) = -\frac{1}{2}x + \frac{7}{2}.
  15. Ex. 3.15Application

    Find the equation of the affine function whose graph passes through the points (2,4)(2, 4) and (4,10)(4, 10).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=10442=3m = \frac{10 - 4}{4 - 2} = 3. Using (2,4)(2, 4): b=43(2)=2b = 4 - 3(2) = -2. Therefore f(x)=3x2f(x) = 3x - 2.
  16. Ex. 3.16Application

    Find the equation of the affine function whose zero is x=2x = -2 (x-intercept: (2,0)(-2, 0)) and whose y-intercept is (0,3)(0, -3).

    Select the correct option
    Select an option first
    Show solution
    The zero is (2,0)(-2, 0) and the y-intercept is (0,3)(0, -3). The slope is m=300(2)=32m = \frac{-3 - 0}{0 - (-2)} = -\frac{3}{2}. Therefore f(x)=32x3f(x) = -\frac{3}{2}x - 3.
    Show step-by-step (with the why)
    1. Identify the two points: (2,0)(-2, 0) and (0,3)(0, -3).
    2. Compute the slope: m=(30)/(0(2))=3/2m = (-3 - 0)/(0 - (-2)) = -3/2.
    3. The y-intercept is b=3b = -3 (given directly).
    4. Write: f(x)=32x3f(x) = -\frac{3}{2}x - 3.
  17. Ex. 3.17Application

    Find the equation of the affine function whose zero is x=5x = -5 (x-intercept: (5,0)(-5, 0)) and whose y-intercept is (0,4)(0, 4).

    Select the correct option
    Select an option first
    Show solution
    The zero is (5,0)(-5, 0) and the y-intercept is (0,4)(0, 4). The slope is m=400(5)=45m = \frac{4 - 0}{0 - (-5)} = \frac{4}{5}. Therefore f(x)=45x+4f(x) = \frac{4}{5}x + 4.
  18. Ex. 3.18Understanding

    Are the lines 4x7y=104x - 7y = 10 and 7x+4y=17x + 4y = 1 parallel, perpendicular, or neither?

    Select the correct option
    Select an option first
    Show solution
    Converting: 4x7y=10y=47x1074x - 7y = 10 \Rightarrow y = \frac{4}{7}x - \frac{10}{7} and 7x+4y=1y=74x+147x + 4y = 1 \Rightarrow y = -\frac{7}{4}x + \frac{1}{4}. The product of the slopes is 47(74)=1\frac{4}{7} \cdot (-\frac{7}{4}) = -1, so they are perpendicular.
    Show step-by-step (with the why)
    1. Isolate yy in the first equation: m1=4/7m_1 = 4/7.
    2. Isolate yy in the second equation: m2=7/4m_2 = -7/4.
    3. Compute m1m2=(4/7)(7/4)=1m_1 \cdot m_2 = (4/7)(-7/4) = -1.
    4. Conclude: perpendicular.
  19. Ex. 3.19Understanding

    Are the lines 3y+x=123y + x = 12 and y=8x+1-y = 8x + 1 parallel, perpendicular, or neither?

    Select the correct option
    Select an option first
    Show solution
    Converting: 3y+x=12y=13x+43y + x = 12 \Rightarrow y = -\frac{1}{3}x + 4, slope 1/3-1/3. And y=8x+1y=8x1-y = 8x + 1 \Rightarrow y = -8x - 1, slope 8-8. The slopes are different and the product (1/3)(8)=8/31(-1/3)(-8) = 8/3 \neq -1, so they are neither parallel nor perpendicular.
  20. Ex. 3.20UnderstandingAnswer key

    Are the lines 3y+4x=123y + 4x = 12 and 6y=8x+1-6y = 8x + 1 parallel, perpendicular, or neither?

    Select the correct option
    Select an option first
    Show solution
    Converting: 3y+4x=12y=43x+43y + 4x = 12 \Rightarrow y = -\frac{4}{3}x + 4 and 6y=8x+1y=43x16-6y = 8x + 1 \Rightarrow y = -\frac{4}{3}x - \frac{1}{6}. Both have slope 4/3-4/3, so they are parallel.
  21. Ex. 3.21Understanding

    Are the lines 6x9y=106x - 9y = 10 and 3x+2y=13x + 2y = 1 parallel, perpendicular, or neither?

    Select the correct option
    Select an option first
    Show solution
    Converting: 6x9y=10y=23x1096x - 9y = 10 \Rightarrow y = \frac{2}{3}x - \frac{10}{9}, slope 2/32/3. And 3x+2y=1y=32x+123x + 2y = 1 \Rightarrow y = -\frac{3}{2}x + \frac{1}{2}, slope 3/2-3/2. Product: (2/3)(3/2)=1(2/3)(-3/2) = -1, so they are perpendicular.
  22. Ex. 3.22Application

    Find the zero (x-intercept) and the y-intercept of the function f(x)=x+2f(x) = -x + 2.

    Select the correct option
    Select an option first
    Show solution
    For f(x)=x+2f(x) = -x + 2: the zero is f(x)=0x=2f(x)=0 \Rightarrow x = 2; the y-intercept is f(0)=2f(0) = 2.
  23. Ex. 3.23Application

    Find the zero (x-intercept) and the y-intercept of the function g(x)=2x+4g(x) = 2x + 4.

    Select the correct option
    Select an option first
    Show solution
    For g(x)=2x+4g(x) = 2x + 4: the zero is 2x+4=0x=22x + 4 = 0 \Rightarrow x = -2; the y-intercept is g(0)=4g(0) = 4.
  24. Ex. 3.24Application

    Find the zero (x-intercept) and the y-intercept of the function h(x)=3x5h(x) = 3x - 5.

    Select the correct option
    Select an option first
    Show solution
    For h(x)=3x5h(x) = 3x - 5: the zero is 3x5=0x=5/33x - 5 = 0 \Rightarrow x = 5/3; the y-intercept is h(0)=5h(0) = -5.
  25. Ex. 3.25Application

    Write the equation of the line parallel to f(x)=5x3f(x) = -5x - 3 that passes through (2,12)(2, -12).

    Select the correct option
    Select an option first
    Show solution
    A line parallel to f(x)=5x3f(x) = -5x - 3 has slope 5-5. Using (2,12)(2, -12): b=12(5)(2)=12+10=2b = -12 - (-5)(2) = -12 + 10 = -2. Therefore f(x)=5x2f(x) = -5x - 2.
  26. Ex. 3.26ApplicationAnswer key

    Write the equation of the line parallel to g(x)=3x1g(x) = 3x - 1 that passes through (4,9)(4, 9).

    Select the correct option
    Select an option first
    Show solution
    A line parallel to g(x)=3x1g(x) = 3x - 1 has slope 33. Using (4,9)(4, 9): b=93(4)=912=3b = 9 - 3(4) = 9 - 12 = -3. Therefore g(x)=3x3g(x) = 3x - 3.
  27. Ex. 3.27Application

    Write the equation of the line perpendicular to h(t)=2t+4h(t) = -2t + 4 that passes through (4,1)(-4, -1).

    Select the correct option
    Select an option first
    Show solution
    A line perpendicular to h(t)=2t+4h(t) = -2t + 4 has slope m=1/(2)=1/2m = -1/(-2) = 1/2. Using (4,1)(-4, -1): b=1(1/2)(4)=1+2=1b = -1 - (1/2)(-4) = -1 + 2 = 1. Therefore h(t)=12t+1h(t) = \frac{1}{2}t + 1.
    Show step-by-step (with the why)
    1. Slope of h(t)=2t+4h(t) = -2t + 4 is 2-2.
    2. Perpendicular slope: m=1/(2)=1/2m = -1/(-2) = 1/2.
    3. Using (4,1)(-4, -1): b=1(1/2)(4)=1b = -1 - (1/2)(-4) = 1.
    4. Result: h(t)=12t+1h(t) = \frac{1}{2}t + 1.
  28. Ex. 3.28ApplicationAnswer key

    Write the equation of the line perpendicular to p(t)=3t+4p(t) = 3t + 4 that passes through (3,1)(3, 1).

    Select the correct option
    Select an option first
    Show solution
    A line perpendicular to p(t)=3t+4p(t) = 3t + 4 has slope m=1/3m = -1/3. Using (3,1)(3, 1): b=1(1/3)(3)=1+1=2b = 1 - (-1/3)(3) = 1 + 1 = 2. Therefore p(t)=13t+2p(t) = -\frac{1}{3}t + 2.
  29. Ex. 3.29Understanding

    Can the table below represent a linear function? If so, find the equation.

    xx051015
    f(x)f(x)5-5202045457070
    Select the correct option
    Select an option first
    Show solution
    Checking the differences: Δx=5\Delta x = 5 and Δf=25\Delta f = 25 in all intervals, so m=25/5=5m = 25/5 = 5. Using (0,5)(0,-5): f(x)=5x5f(x) = 5x - 5.
  30. Ex. 3.30UnderstandingAnswer key

    Can the table below represent a linear function? If so, find the equation.

    xx2468
    f(x)f(x)4-4161636365656
    Select the correct option
    Select an option first
    Show solution
    Checking: Δx=2\Delta x = 2 and Δf=20\Delta f = 20 in all intervals, so m=20/2=10m = 20/2 = 10. Using (2,4)(2, -4): b=410(2)=24b = -4 - 10(2) = -24. Therefore f(x)=10x24f(x) = 10x - 24.
  31. Ex. 3.31ChallengeAnswer key

    If ff is a linear function with f(0,1)=11,5f(0{,}1) = 11{,}5 and f(0,4)=5,9f(0{,}4) = -5{,}9, find the equation of ff.

    Select the correct option
    Select an option first
    Show solution
    The slope is m=5,911,50,40,1=17,40,3=58m = \frac{-5{,}9 - 11{,}5}{0{,}4 - 0{,}1} = \frac{-17{,}4}{0{,}3} = -58. Using (0,1,  11,5)(0{,}1,\; 11{,}5): b=11,5(58)(0,1)=11,5+5,8=17,3b = 11{,}5 - (-58)(0{,}1) = 11{,}5 + 5{,}8 = 17{,}3. Therefore f(x)=58x+17,3f(x) = -58x + 17{,}3.
  32. Ex. 3.32Modeling

    At noon, a barista has 20inthetipjar.Iftheyreceiveanaverageof20 in the tip jar. If they receive an average of 0.50 per customer, what is the affine function that models the total amount in the jar after serving nn customers?

    Select the correct option
    Select an option first
    Show solution
    The initial amount is 20 (y-intercept) and it grows by 0.50 per customer (slope). Therefore T(n)=20+0,50nT(n) = 20 + 0{,}50n.
  33. Ex. 3.33Modeling

    A gym membership with 2 personal training sessions costs 125,andwith5sessionscosts125, and with 5 sessions costs 260. What is the cost per individual session?

    Select the correct option
    Select an option first
    Show solution
    The price difference for 3 extra sessions is 260125=135260 - 125 = 135. Cost per session: 135/3=45135 / 3 = 45.
    Show step-by-step (with the why)
    1. Cost difference: 260125=135260 - 125 = 135.
    2. Session difference: 52=35 - 2 = 3 sessions.
    3. Cost per session: 135/3=45135 / 3 = 45.
  34. Ex. 3.34Modeling

    A city's population was growing linearly. In 2003 there were 45,000 inhabitants, with a growth of 1,700 people per year. Write the function P(t)P(t) that models the population.

    Select the correct option
    Select an option first
    Show solution
    The population starts at 45,000 in 2003 and grows by 1,700 per year. Therefore P(t)=45000+1700tP(t) = 45000 + 1700t, where t=0t = 0 corresponds to 2003.
  35. Ex. 3.35Modeling

    When the temperature is 0 °C, Fahrenheit is 32. When Celsius is 100, Fahrenheit is 212. Express Fahrenheit as an affine function of Celsius.

    Select the correct option
    Select an option first
    Show solution
    Two points: (C,F)=(0,32)(C, F) = (0, 32) and (100,212)(100, 212). The slope is m=(21232)/(1000)=180/100=1,8m = (212-32)/(100-0) = 180/100 = 1{,}8. With b=32b = 32: F=1,8C+32F = 1{,}8C + 32.
    Show step-by-step (with the why)
    1. Identify two known points: (0,32)(0, 32) and (100,212)(100, 212).
    2. Compute the slope: m=(21232)/100=1,8m = (212-32)/100 = 1{,}8.
    3. The y-intercept is b=32b = 32 (when C=0C = 0).
    4. Write: F=1,8C+32F = 1{,}8C + 32.
  36. Ex. 3.36Modeling

    A city's population was decreasing at a constant rate. In 2010 it was 5,900; in 2012 it fell to 4,700. Write the affine function P(t)P(t) modeling the population, with t=0t = 0 in 2010.

    Select the correct option
    Select an option first
    Show solution
    Rate of change: (47005900)/(20122010)=1200/2=600(4700 - 5900)/(2012 - 2010) = -1200/2 = -600 inhabitants/year. With P(0)=5900P(0) = 5900: P(t)=5900600tP(t) = 5900 - 600t.
  37. Ex. 3.37Modeling

    In 2004, a school's population was 1,001. In 2008 it grew to 1,697. Assuming linear growth, what was the annual growth rate?

    Select the correct option
    Select an option first
    Show solution
    Growth rate: (16971001)/(20082004)=696/4=174(1697 - 1001)/(2008 - 2004) = 696/4 = 174 people/year.
  38. Ex. 3.38Challenge

    You are choosing between two prepaid cell phone plans. Plan A charges 0.26/minute.PlanBchargesaflatfeeof0.26/minute. Plan B charges a flat fee of 19.95 plus $0.11/minute. After how many minutes does Plan B become cheaper?

    Select the correct option
    Select an option first
    Show solution
    Plan 1: C1(m)=0,26mC_1(m) = 0{,}26m. Plan 2: C2(m)=19,95+0,11mC_2(m) = 19{,}95 + 0{,}11m. Setting equal: 0,26m=19,95+0,11m0,15m=19,95m=1330{,}26m = 19{,}95 + 0{,}11m \Rightarrow 0{,}15m = 19{,}95 \Rightarrow m = 133 minutes.
    Show step-by-step (with the why)
    1. Model: C1=0,26mC_1 = 0{,}26m and C2=19,95+0,11mC_2 = 19{,}95 + 0{,}11m.
    2. Set equal to find the break-even: 0,26m=19,95+0,11m0{,}26m = 19{,}95 + 0{,}11m.
    3. Isolate mm: 0,15m=19,950{,}15m = 19{,}95.
    4. Solve: m=19,95/0,15=133m = 19{,}95 / 0{,}15 = 133 minutes.
  39. Ex. 3.39Challenge

    At a new sales job, you have two salary options:

    • Option A: base salary of $17,000/year + 12% commission on sales.
    • Option B: base salary of $20,000/year + 5% commission on sales.

    Above what sales value does Option A earn more?

    Select the correct option
    Select an option first
    Show solution
    Option A: 17000+0,12s17000 + 0{,}12s; Option B: 20000+0,05s20000 + 0{,}05s. Setting equal: 17000+0,12s=20000+0,05s0,07s=3000s=3000/0,074285717000 + 0{,}12s = 20000 + 0{,}05s \Rightarrow 0{,}07s = 3000 \Rightarrow s = 3000/0{,}07 \approx 42857. Above approximately 42,857 in sales, Option A is more profitable.
  40. Ex. 3.40Modeling

    Company A washes windows for 5perwindow.CompanyBchargesaflatfeeof5 per window. Company B charges a flat fee of 40 plus $3 per window. For how many windows does Company B become cheaper?

    Select the correct option
    Select an option first
    Show solution
    Company 1: C1=5wC_1 = 5w; Company 2: C2=40+3wC_2 = 40 + 3w. Setting equal: 5w=40+3w2w=40w=205w = 40 + 3w \Rightarrow 2w = 40 \Rightarrow w = 20 windows. Above 20 windows, Company 2 is cheaper.
  41. Ex. 3.41Application

    Determine whether each function is increasing or decreasing: g(x)=5x+6g(x) = 5x + 6 and a(x)=52xa(x) = 5 - 2x.

    Select the correct option
    Select an option first
    Show solution
    In g(x)=5x+6g(x) = 5x + 6 the slope is 5>05 > 0, so it is increasing. In a(x)=52xa(x) = 5 - 2x the slope is 2<0-2 < 0, so it is decreasing.
  42. Ex. 3.42Application

    Find the equation of the affine function whose graph passes through the points (1,5)(1, 5) and (4,11)(4, 11).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=(115)/(41)=6/3=2m = (11 - 5)/(4 - 1) = 6/3 = 2. With (1,5)(1, 5): b=52(1)=3b = 5 - 2(1) = 3. Therefore f(x)=2x+3f(x) = 2x + 3.
    Show step-by-step (with the why)
    1. Compute m=(115)/(41)=2m = (11-5)/(4-1) = 2.
    2. Use (1,5)(1,5): b=521=3b = 5 - 2 \cdot 1 = 3.
    3. Write: f(x)=2x+3f(x) = 2x + 3.
    4. Verify: f(4)=8+3=11f(4) = 8 + 3 = 11. Correct.
  43. Ex. 3.43Application

    Find the equation of the affine function whose graph passes through the points (1,4)(-1, 4) and (5,2)(5, 2).

    Select the correct option
    Select an option first
    Show solution
    The slope is m=(24)/(5(1))=2/6=1/3m = (2-4)/(5-(-1)) = -2/6 = -1/3. With (1,4)(-1,4): b=4(1/3)(1)=41/3=11/3b = 4 - (-1/3)(-1) = 4 - 1/3 = 11/3. Therefore f(x)=13x+113f(x) = -\frac{1}{3}x + \frac{11}{3}.
  44. Ex. 3.44Modeling

    A newborn weighs 7.5 pounds. In the first year, they gain half a pound per month. Write the affine function W(m)W(m) that models the weight after mm months.

    Select the correct option
    Select an option first
    Show solution
    The baby is born weighing 7.5 lb (y-intercept) and gains 0.5 lb/month (slope). Therefore W(m)=7,5+0,5mW(m) = 7{,}5 + 0{,}5m.
  45. Ex. 3.45Modeling

    Using the model W(m)=7,5+0,5mW(m) = 7{,}5 + 0{,}5m from the previous exercise, after how many months did the baby weigh 10.0 pounds?

    Select the correct option
    Select an option first
    Show solution
    Using W(m)=7,5+0,5mW(m) = 7{,}5 + 0{,}5m, solve 10,0=7,5+0,5m0,5m=2,5m=510{,}0 = 7{,}5 + 0{,}5m \Rightarrow 0{,}5m = 2{,}5 \Rightarrow m = 5 months.

Sources

Only books that directly fed the text and exercises. Full catalog at /livros.

Updated on 2026-05-04 · Author(s): Clube da Matemática

Found an error? Open an issue on GitHub or submit a PR — open source forever.