Andrew's git
/
notes.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
cubic/quartic graphs
author
Andrew Lorimer
<andrew@lorimer.id.au>
Wed, 5 Dec 2018 01:18:32 +0000
(12:18 +1100)
committer
Andrew Lorimer
<andrew@lorimer.id.au>
Wed, 5 Dec 2018 01:18:32 +0000
(12:18 +1100)
methods/polynomials.md
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
68fd9bb
)
diff --git
a/methods/polynomials.md
b/methods/polynomials.md
index e81e0b0dca4be853c19422fb5a62e3990dfb260a..c312123e90be1a80fb043d2488cc617711b66744 100644
(file)
--- a/
methods/polynomials.md
+++ b/
methods/polynomials.md
@@
-21,3
+21,30
@@
$$y=mx+c, \quad {x \over a} + {y \over b}=1$$
Parallel lines - $m_1 = m_2$
Perpendicular lines - $m_1 \times m_2 = -1$
Parallel lines - $m_1 = m_2$
Perpendicular lines - $m_1 \times m_2 = -1$
+
+
+## Cubic graphs
+
+$$y=a(x-b)^3 + c$$
+
+- $m=0$ at *stationary point of inflection*
+- in form $y=(x-a)^2(x-b)$, local max at $x=a$, local min at $x=b$
+- in form $y=a(x-b)(x-c)(x-d)$: $x$-intercepts at $b, c, d$
+
+
+## Quartic graphs
+
+$$y=ax^4$$
+
+$$=a(x-b)(x-c)(x-d)(x-e)$$
+
+$$=ax^4+cd^2 (c \ge 0)$$
+
+$$=ax^2(x-b)(x-c)$$
+
+$$=a(x-b)^2(x-c)^2$$
+
+$$=a(x-b)(x-c)^3$$
+
+where
+- $x$-intercepts at $x=b,c,d,e$