Skip to content

Instantly share code, notes, and snippets.

@jonbrennecke
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonbrennecke/09b342ffc8e483884899 to your computer and use it in GitHub Desktop.
Save jonbrennecke/09b342ffc8e483884899 to your computer and use it in GitHub Desktop.
Proof that 2 = 1
Let a = b

a^2 = ab
a^2 + a^2 = a^2 + ab
2a^2 = a^2 + ab
2a^2 - 2ab = a^2 + ab - 2ab
2a^2 - 2ab = a^2 - ab
2(a^2 - ab) = a^2 - ab
2 = 1
@jonbrennecke
Copy link
Author

@brettberry see if you can figure this out

@brettberry
Copy link

btw never, ever divide by a variable under any circumstance (common error I saw all the time with students)...it either results in a divide by zero error explicitly, or as in many algebraic equations results in losing the zero answer case (which is harder to detect) since when the variable takes on zero it breaks the equation. (eg say I have 2x = 3x, well if I divide by x I get 2 = 3, because the only real solution for x is 0; or more common x^2 - 2x = x, some students try this: x(x-2) = x -> x(x-2)/x = x/x -> x-2 = 1 -> x = 3; this is confusing because x = 3 is a correct answer (3^2 - 2*3 = 3) but so is zero (0^2 - 0 = 0), you lose the zero case. The correct way of solving would be to collect and factor so that all solutions remain present: x^2 - 3x = 0 -> x ( x - 3 ) = 0 -> x = 0 and x = 3.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment