MS 100 College Algebra test five • Name:

1. Parabola What is the name of the shape seen on the graph below?

SVG xy scatter graph major grid lines axes x-axis and y-axis coordinate labels (−40,0) (−4,45) y-intercept ≠ 45! y-intercept is is below vertex (32,0) Quadratic line data points as circles text layers Quadratic curve x axis value labels y-axis value labels y-axis labels -5 0 5 10 15 20 25 30 35 40 45 x-axis labels -50 -40 -30 -20 -10 0 10 20 30 40 50

Data table for the above graph

coordinatexy
x-intercept−40.00.0
vertex−4.045.0
x-intercept32.00.0

2. Find a, b, and c in the y = ax² + bx + c form of the equation for the graph above. The coordinates for both x-intercepts and the vertex are depicted on the graph.

(y − 45) = a(x − (−4))²
 y − 45 = a(x + 4)²
 0 − 45 = a(−40 + 4)²
 0 − 45 = a(−36)²
 −45 = 1296a
 a = −45/1296 = −5/144 = −0.0347
 y − 45 = −5/144(x + 4)²
 y − 45 = −5/144(x² + 8x + 16)
 y − 45 = −5/144)x² + (−5/18)x + (−5/9)
 y = (−5/144)x² + (−5/18)x + (−5/9) + 45
 y = (−5/144)x² + (−5/18)x + (400/9)
This is really a relative of the marble problem:
 y − k = a(x − h)²
 0 − k = a(r − h)²
 where (±r,0) are the roots for the parabola
 −k = a(r² −2rh + h²)
 a = (−k)/(r² −2rh + h²)
 Note that if h = 0, as in the marble problem, then a = (−k)/(r²)
 

a = −5/144 = −0.03472

b = −5/18 = −0.2778

c = 400/9 = 44.44

3. y = 400/9 = 44.44 Find the y-intercept for the graph depicted above.

4. Use a Qalculate! to help you sketch a graph of the following function over the domain −5.1 ≤ x ≤ 5.1. Sketch the graph on your paper.
f(x) = x 6 - 34 x 4 + 225 x 2

x^6-34*x^4+225*x^2

5. Yes Is the equation in question four a function?

6. 6 What is the degree of the equation in question four?

7. 5 (technically six with a repeated zero at x = 0) How many zeros are there for the equation in question four?

8. Use polynomial division to divide the equation in question four by (x+3)

f(x)/(x+3) = x 5 - 3 x 4 - 25 x 3 + 75 x 2

Gnuplot commands for plot above:

reset
set border
set xtics 1
set ytics 100
set xzeroaxis lt 9 lw 5
set yzeroaxis lt 9 lw 5
set style line 1 lt 1 lw 4
set style line 2 lt 3 lw 5
set style line 3 lt 10 lw 6
set style line 4 lt 12 lw 3
set style line 5 lt 9 lw 1
set grid ls 5
show grid
set xrange [-6:6]
set yrange [-1200:500]
set samples 1000
set key off
f(x)=x**6-34*x**4+225*x**2
plot f(x) ls 1

Maxima output

(%i1) expand((x-3)*(x+3)*(x-5)*(x+5)*x*x);
((%o1) x^6-34*x^4+225*x^2