[SOLVED] Algebra2-Homework 7

30.00 $

Programming resource
Digital learning resource
Category:
Practical programming resource
Suitable for guided study and reference
Tutor guidance available when needed

Description

5/5 - (1 vote)

Problem 1. Given a vertex and another point on a parabola, write in the form f(x) = a(x−h)2+k. Find the zeros of this function by setting f(x) = 0 and solving for x. Rewrite each function in the form f(x) = ax2 + bx + c. Use the quadratic formula to find the zeros and the vertex of the parabola. Graphing the parabola may help you to keep all of this straight. It’s not necessary, but I highly recommend doing it so that you’re not just “plugging numbers” into the right places, you’re actually seeing why you’re plugging in inputs and getting outputs. An example is given below.

(a)      Vertex: (−2,3), Point: (−1,2)

(b)     Vertex: (3,−1), Point: (0,1)

(c)      Vertex: (2,1), Point: (1,2)

(d)     Vertex: (−5,−2), Point: (−1,6)

(e)      Vertex:        , Point: (1,1)

Example. Vertex: (1,2), Point: (3,1)

Since the vertex is at (1,2), we can realize this function as the graph of x2 shifted right one unit and up 2 units. Therefore f(x) = a(x −1)2+2

and we just need to find a. Since (3,1) is a point on the function, y = 1 when x = 3. That is, the output of f is 1 when the input is 3. Symbolically,

f(3) = 1

Using our f(x) from above, we have

f(3) = a(3−1)2+2 = 1

⇐⇒ a(2)2+2 = 1

Plugging in our value for a into our original f(x) gives us the answer to the first task:

To find the zeros of this function we solve f(x) = 0 for x:

Rewriting   in the form f(x) = ax2+ bx + c gives us

So  is in the desired form where , and . Plugging this in to :

And therefore

Obviously the midpoint of these two zeros is 1 (which happens to be equal to   imagine that!) and therefore the x-value of the vertex is x = 1. To find the vertex’s y-value, we plug in x = 1 into our function  to get

Then the vertex is at (1,2), as desired.

Resource details

Understand the Task Before You Use the Resource

Review the requirements, identify the programming concepts involved, study the implementation and test your understanding with your own examples and modifications.