Skip to content

Instantly share code, notes, and snippets.

@basicxman
Created September 29, 2011 21:52
Show Gist options
  • Select an option

  • Save basicxman/1252040 to your computer and use it in GitHub Desktop.

Select an option

Save basicxman/1252040 to your computer and use it in GitHub Desktop.
% (5x + 3)^2 - (4x + 1)(6 - x)
% =25x^2 + 30x + 9 - (24x - 4x^2 + 6 - x)
\documentclass[12pt]{article}
\usepackage{amsmath}
\title{\Unit 1 Key Questions}
\begin{document}
\begin{equation}
\begin{split}
&(5x + 3)^2 / (4x + 1)(6 - x)\\
=&\ 25x^2 + 30x + 9 - (24x - 4x^2 + 6 - x)\\
=&\ 25x^2 + 30x + 9 - 24x + 4x^2 - 6 + x\\
=&\ 29x^2 + 7x + 3
\end{split}
\end{equation}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment