week4 tweaking
authorJim Pryor <profjim@jimpryor.net>
Sun, 3 Oct 2010 19:43:18 +0000 (15:43 -0400)
committerJim Pryor <profjim@jimpryor.net>
Sun, 3 Oct 2010 19:43:18 +0000 (15:43 -0400)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
week4.mdwn

index fb84346..f92ea16 100644 (file)
@@ -27,11 +27,13 @@ of `T`, by the reasoning in the previous answer.
 A: Right:
 
 <pre><code>let Y = \T. (\x. T (x x)) (\x. T (x x)) in
-Y Y &equiv; \T. (\x. T (x x)) (\x. T (x x)) Y
+Y Y
+&equiv;   \T. (\x. T (x x)) (\x. T (x x)) Y
 ~~> (\x. Y (x x)) (\x. Y (x x))
 ~~> Y ((\x. Y (x x)) (\x. Y (x x)))
 ~~> Y (Y ((\x. Y (x x)) (\x. Y (x x))))
-~~> Y (Y (Y (...(Y (Y Y))...)))</code></pre>
+~~> Y (Y (Y (...(Y (Y Y))...)))
+</code></pre>
 
 
 #Q: Ouch!  Stop hurting my brain.#