From 5d9ad7d00fe98229ca9df28fa73d2ade6ab4dff6 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Tue, 3 Apr 2012 00:44:28 -0400 Subject: [PATCH] more notes while working through linear equations --- math-replay/algebra/linear-equations-2.haml | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 math-replay/algebra/linear-equations-2.haml diff --git a/math-replay/algebra/linear-equations-2.haml b/math-replay/algebra/linear-equations-2.haml new file mode 100644 index 0000000..3b5c3c6 --- /dev/null +++ b/math-replay/algebra/linear-equations-2.haml @@ -0,0 +1,25 @@ +%html + %head + %script{:type => "text/x-mathjax-config"} + MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}}); + %script{:type => "text/javascript", :src => "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"} + :css + .solution { + border-top: 1px dotted #222; + } + %body + %h2 Solve for $x$: + #solve-for-x-01.solution + :escaped + $$ + \begin{eqnarray} + 6x + 8 & = & 5 \\ + -8 + 6x + 8 & = & 5 - 8 \\ + 6x & = & 5 - 8 \\ + 6x & = & -3 \\ + 6x \times \frac{1}{6} & = & -3 \times \frac{1}{6} \\ + x & = & -3 \times \frac{1}{6} \\ + x & = & -3 \over 6 \\ + x & = & \frac{-1}{2} \\ + \end{eqnarray} + $$