##Lab 8 Quadratic Functions In this lab you will review the solution processes for finding zeroes of quadratic functions. You will also examine different forms of a quadratic function. First, there are 3 solution processes you can use when solving a quadratic by hand: factoring, complete the square and the quadratic formula. Let's only look at the quadratic formula since it will work fastest.(Of course we can just tell SAGE to SOLVE it!)
Your turn. . . Use copy and paste with the code above to create, graph and find the solutions to these three:
The above code created quadratics in the general form. Let's take a moment and examine the factored form. Here we'll create a quadratic in its factored form. You will see that the zeroes of this type will just be constants inside the binomial factors.
Create factored form quadratics and graph them for the following criteria:
leading term coefficient is 1/2. Zeros are 5 and
leading term coefficient is .03. x-intercepts are and
leading term coefficient is -3. Zeros are both -4.
The vertex form of a quadratic depends on the coordinates of the vertex of the resulting parabola and also the vertical line of the form called the axis of symmetry.
One of the questions you will probably be asked is to create a quadratic in vertex form that has a particular vertex, (h,k), and also has a particular y-intercept. Below I direct SAGE to create and graph a parabola that has its vertex at (5,8) and its y-intercept at (0,1). I'll use a couple of code blocks since I need to calculate as I work. the first thing I have to do is determine the "a"-value since I know (h,k). I know that when x=0, y=1 so I will use this info to find a.
Create and graph the parabola with vertex, (-1,-2), and y-intercept=6.