From 6c273eef2d2786562f6e1062a3d93480b44cd788 Mon Sep 17 00:00:00 2001 From: alexander Date: Sun, 15 Feb 2026 19:17:42 +0100 Subject: [PATCH] added some usefull integrals --- src/cheatsheets/Analysis1.typ | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/cheatsheets/Analysis1.typ b/src/cheatsheets/Analysis1.typ index 70606d6..66d9d03 100644 --- a/src/cheatsheets/Analysis1.typ +++ b/src/cheatsheets/Analysis1.typ @@ -606,6 +606,13 @@ $tan(x) = (2t)/(1-t^2)$, $cos(x) = (1-t^2) / (1 + t^2)$, ) + + *Tricks aus der Schule* + + $integral f(a x+b) d x = 1/a F(a x + b) +c \ + integral (f'(x))/f(x) d x = ln abs(f(x)) \ + integral f'(x) e^(f(x)) d x = e^(f(x)) +c \ + $ ]) #bgBlock(fill: colorIntegral, [ @@ -671,9 +678,21 @@ $integral 1/(x-a) d x = ln(x - a) + c\ integral 1/(x-a)^n d x = - 1/(n-1) 1/(x - a)^(n-1) + c quad "für" n >= 2 \ integral 1/((x - a)^2 + b^2) d x = 1/b arctan((x - a)/b) + c quad "für" n > 0\ - integral (x - a)/((x-a)^a + b^2) d x = 1/2 ln((x-a)^2 + b^2) + c + integral (x - a)/((x-a)^a + b^2) d x = 1/2 ln((x-a)^2 + b^2) + c \ $ + #grid( + columns: (1fr), + column-gutter: 2mm, + row-gutter: 4mm, + $integral 1/x d x = ln abs(x) +c$, + $integral 1/x^2 d x = - 1/x + c$, + $integral 1/(a + x) d x = ln abs(a + x) + c$, + $integral 1/(a + x)^2 d x = - 1/(a + x) + c$, + $integral 1/(a - x) d x = - ln abs(a - x) + c$, + $integral 1/(a - x)^2 d x = 1/(a - x) + c$ + ) + ])