You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/math-replay/algebra/linear-equations-2.haml

26 lines
759 B

%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}
$$