Simplify function composition slide

This commit is contained in:
Julian Ospald 2015-05-01 16:42:18 +02:00
부모 29df3d710a
커밋 cc75bd68ef
No known key found for this signature in database
GPG 키 ID: 220CD1C5BDEED020
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -2,7 +2,7 @@
\vspace{\baselineskip}
\\
\ifger{Aus der Mathematik wissen wir bereits, dass:}{From maths we already know that:}\\
$(g \circ f)(x) = g(f(x))$
$(f \circ g)(x) = f(g(x))$
\vspace{\baselineskip}
\\
\pause
@ -14,7 +14,7 @@ composedFunction x = (f . g) x
-- is evaluated first
composedFunction x = f . g $ x
-- and same again, remember that 'f x ='
-- and same again, remember that 'g x ='
-- is just syntax sugar
-- omitting the x here is also called eta reduction
composedFunction = f . g