start transformation notes (methods)
[notes.git] / methods / polynomials.md
index b80ea637836ed521e4161cdf9b0817a2dd93481d..a8b56af1c7eea954695cedcfb73b0b0fc2fc74c1 100644 (file)
@@ -48,3 +48,16 @@ $$=a(x-b)(x-c)^3$$
 
 where
 - $x$-intercepts at $x=b,c,d,e$
+
+## Literal equations
+
+Equations with multiple pronumerals. Solutions are expressed in terms of pronumerals (parameters))
+
+## Simultaneous equations (linear)
+
+- **Unique solution** - lines intersect at point
+- **Infinitely many solutions** - lines are equal
+- **No solution** - lines are parallel
+
+Solving in matrix form - use inverse $A^{-1}= {1 \over {ad-bc}}\begin{bmatrix}d & -b \\ -c & a\end{bmatrix}$. $A^{-1}$ exists for infinite solutions or no solutions ($ad-bc=0$), does not exist for unique solutions ($ad-bc \ne 0$).  
+Or use Matrix -> `det` on CAS.
\ No newline at end of file