Marilyn W. answered 05/24/24
Tutor
5.0
(42)
Passionate tutor on Computer Science, STEM, standardized testing
To find how high above the river the water arc is, we need to determine the maximum height of the water arc given by the model 𝑦=−0.006𝑥2+1.2𝑥+10y=−0.006x2+1.2x+10.
Step-by-Step Solution:
- Identify the Model: The equation given is:
makefile
Copy code
y = -0.006x^2 + 1.2x + 10
- This is a quadratic equation of the form 𝑦=𝑎𝑥2+𝑏𝑥+𝑐y=ax2+bx+c, where:
- 𝑎=−0.006a=−0.006
- 𝑏=1.2b=1.2
- 𝑐=10c=10
- Find the Vertex: The vertex of a parabola given by 𝑦=𝑎𝑥2+𝑏𝑥+𝑐y=ax2+bx+c is at 𝑥=−𝑏/(2𝑎)x=−b/(2a).
- Calculate the x-coordinate of the Vertex:
makefile
Copy code
x = -1.2 / (2 * -0.006)
x = -1.2 / -0.012
x = 100
- Find the y-coordinate of the Vertex: Substitute 𝑥=100x=100 back into the original equation to find the height of the arc.
makefile
Copy code
y = -0.006(100)^2 + 1.2(100) + 10
y = -0.006(10000) + 120 + 10
y = -60 + 120 + 10
y = 70
Result
The maximum height of the water arc is 70 feet above the river.