notes/education/math/MATH1050/Exponents/Quadratics.md

26 lines
2.1 KiB
Markdown
Raw Normal View History

2024-01-02 17:14:25 +00:00
# Notes
2024-01-03 17:02:43 +00:00
To convert an equation in the form of $y = (x^2-3x)$ into a square equivalent, you:
- Take the second value, $3$, then half it, giving you ($\frac{3}{2}$).
2024-01-03 17:08:43 +00:00
- Then to rebalance the equation, you're going to square that value (giving you $\frac{9}{4}$), then add it to the other side, multiplying it by $a$ if necessary, where $a$ is what the parentheses are multiplied by in the form $a(x - h)^2$. This will give you an equation that looks something like: $\frac{9}{4} + y = (x -\frac{3}{2})^2$.
- Finally, you can rebalance the equation by subtracting $\frac{9}{4}$ from both sides, giving you $y = (x - \frac{3}{2})^2 - \frac{9}{4}$. This equation should be equal to the original.
2024-01-03 17:02:43 +00:00
2024-01-02 17:24:25 +00:00
$$ y = -5x^2 -20x + 13 $$
Given the above equation, you can factor out a -5, resulting in the equation $-5(x^2+4x) + 13)$. Half of 4 is 2, and because the inside is multiplied by -5, $-5 *4 = -20$, so you add -20 to the other side to equalize the equation, resulting in an equation in the form of $-20 + y = -5(x+2)^2+ 13$. This simplifies down to $y = -5(x+2)^2 + 33$.
2024-01-02 17:09:25 +00:00
# Forms
2024-01-02 17:14:25 +00:00
**Standard form (vertex form)**
2024-01-02 17:29:25 +00:00
$$ y = a(x - h)^2 + k $$
2024-01-02 17:14:25 +00:00
To convert to standard form given a vertex of a quadratic equation and a point that falls along that line, plug values in for everything and solve for $a$.
**Quadratic form**
$$ y = a^2 + bx + c $$
2024-01-03 17:18:56 +00:00
# End Behavior of functions
If the largest exponent of a function is **even**, both sides of a function will point the same way.
2024-01-03 17:24:56 +00:00
Given there's no negative coefficient, as $x$ goes towards infinity, $f(x)$ will go towards infinity. As $f(x)$ goes towards $-\infty$, $f(x)$ will still go to infinity. A negative coefficient will flip this.
2024-01-03 17:18:56 +00:00
$$ x \rightarrow \infty, \space f(x) \rightarrow \infty $$
2024-01-03 17:24:56 +00:00
2024-01-03 17:18:56 +00:00
$$ x \rightarrow -\infty, \space f(x) \rightarrow -\infty $$
2024-01-03 17:24:56 +00:00
If the largest exponent of a function is **odd**, each side of the function will point towards a different direction. Given there's no negative coefficient, the left side of the graph will point down, and the right side will point up. A negative coefficient will flip this.
The *least degree* of a polynomial is the number of turning points + 1.