To find the equation of the tangent line to the graph at the given point, we follow these steps:
- Identify the function: The function is given by
y = 32 - 4x^2 + 5x + 6
. - Find the derivative: The derivative of the function,
y'
, will give us the slope of the tangent line. We differentiate with respect tox
:
y' = -8x + 5
- Evaluate the derivative at the given point: We need to find the slope at the specific point where we want to determine the tangent line. Let’s assume the given point corresponds to a specific
x
value. For example, if we are given the point as(x_0, y_0)
, we would plugx_0
into the derivative to find the slope:
m = -8(x_0) + 5
- Find the
y
value atx_0
: Substitutex_0
back into the original function to findy_0
:
y_0 = 32 - 4(x_0)^2 + 5(x_0) + 6
- Write the equation of the tangent line: The equation of the tangent line can be expressed in point-slope form:
y - y_0 = m(x - x_0)
Replacingm
,x_0
, andy_0
with their respective values gives us the equation of the tangent line.
Here’s a quick example:
If we want to find the tangent line at the point where x = 1
:
– First, compute the slope:
m = -8(1) + 5 = -3
– Then, find the corresponding y_0
:
y_0 = 32 - 4(1)^2 + 5(1) + 6 = 39
– Finally, the equation of the tangent line is:
y - 39 = -3(x - 1)
or y = -3(x - 1) + 39
.
Thus, the equation of the tangent line at that point is y = -3x + 42
.