Skip to content

Commit 9b39329

Browse files
committed
feat: add laplace equations
1 parent caab886 commit 9b39329

2 files changed

Lines changed: 119 additions & 3 deletions

File tree

pnpm-workspace.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
---
2+
title: "1. Complete Laplace Transform Table"
3+
description: ""
4+
---
5+
6+
## Basic Properties and Theorems
7+
8+
### Linearity
9+
$$\mathcal{L}\{af(t) + bg(t)\} = aF(s) + bG(s)$$
10+
11+
### First Shifting Theorem (Frequency Shift)
12+
$$\mathcal{L}\{e^{at}f(t)\} = F(s-a)$$
13+
14+
### Second Shifting Theorem (Time Shift)
15+
$$\mathcal{L}\{f(t-a)u(t-a)\} = e^{-as}F(s), \quad a > 0$$
16+
17+
### Scaling Theorem
18+
$$\mathcal{L}\{f(at)\} = \frac{1}{a}F\left(\frac{s}{a}\right), \quad a > 0$$
19+
20+
### Differentiation (Time Domain)
21+
$$\mathcal{L}\{f'(t)\} = sF(s) - f(0)$$
22+
$$\mathcal{L}\{f''(t)\} = s^2F(s) - sf(0) - f'(0)$$
23+
24+
### Integration (Time Domain)
25+
$$\mathcal{L}\left\{\int_0^t f(\tau)d\tau\right\} = \frac{F(s)}{s}$$
26+
27+
### Differentiation (Frequency Domain)
28+
$$\mathcal{L}\{tf(t)\} = -\frac{dF}{ds}$$
29+
$$\mathcal{L}\{t^nf(t)\} = (-1)^n\frac{d^nF}{ds^n}$$
30+
31+
### Convolution Theorem
32+
$$\mathcal{L}\{f(t) * g(t)\} = F(s)G(s)$$
33+
where $f(t) * g(t) = \int_0^t f(\tau)g(t-\tau)d\tau$
34+
35+
### Initial Value Theorem
36+
$$f(0^+) = \lim_{s \to \infty} sF(s)$$
37+
38+
### Final Value Theorem
39+
$$\lim_{t \to \infty} f(t) = \lim_{s \to 0} sF(s)$$ (if limit exists)
40+
41+
---
42+
43+
## Standard Laplace Transform Pairs
44+
45+
| $f(t)$ | $F(s) = \mathcal{L}\{f(t)\}$ | Conditions |
46+
|--------|-----|-----------|
47+
| $\delta(t)$ (Dirac delta) | $1$ | |
48+
| $u(t)$ (Unit step) | $\frac{1}{s}$ | $s > 0$ |
49+
| $t$ | $\frac{1}{s^2}$ | $s > 0$ |
50+
| $t^n$ | $\frac{n!}{s^{n+1}}$ | $s > 0, n \in \mathbb{Z}^+$ |
51+
| $t^{n-1}e^{-at}$ | $\frac{(n-1)!}{(s+a)^n}$ | $s > -a, n \in \mathbb{Z}^+$ |
52+
| $e^{at}$ | $\frac{1}{s-a}$ | $s > a$ |
53+
| $te^{at}$ | $\frac{1}{(s-a)^2}$ | $s > a$ |
54+
| $t^ne^{at}$ | $\frac{n!}{(s-a)^{n+1}}$ | $s > a$ |
55+
| $\sin(bt)$ | $\frac{b}{s^2+b^2}$ | $s > 0$ |
56+
| $\cos(bt)$ | $\frac{s}{s^2+b^2}$ | $s > 0$ |
57+
| $\sinh(bt)$ | $\frac{b}{s^2-b^2}$ | $s > b$ |
58+
| $\cosh(bt)$ | $\frac{s}{s^2-b^2}$ | $s > b$ |
59+
| $e^{at}\sin(bt)$ | $\frac{b}{(s-a)^2+b^2}$ | $s > a$ |
60+
| $e^{at}\cos(bt)$ | $\frac{s-a}{(s-a)^2+b^2}$ | $s > a$ |
61+
| $t\sin(bt)$ | $\frac{2bs}{(s^2+b^2)^2}$ | $s > 0$ |
62+
| $t\cos(bt)$ | $\frac{s^2-b^2}{(s^2+b^2)^2}$ | $s > 0$ |
63+
| $\sin(bt) - bt\cos(bt)$ | $\frac{2b^3}{(s^2+b^2)^2}$ | $s > 0$ |
64+
| $t\sinh(bt)$ | $\frac{2bs}{(s^2-b^2)^2}$ | $s > b$ |
65+
| $t\cosh(bt)$ | $\frac{s^2+b^2}{(s^2-b^2)^2}$ | $s > b$ |
66+
67+
---
68+
69+
## Additional Common Functions
70+
71+
| $f(t)$ | $F(s)$ |
72+
|--------|--------|
73+
| $u(t-a)$ | $\frac{e^{-as}}{s}$ |
74+
| $(t-a)u(t-a)$ | $\frac{e^{-as}}{s^2}$ |
75+
| $e^{-at}u(t)$ | $\frac{1}{s+a}$ |
76+
| $\sin(bt-c)u(t)$ | $\frac{b\cos(c) + s\sin(c)}{s^2+b^2}$ |
77+
| $\cos(bt-c)u(t)$ | $\frac{s\cos(c) + b\sin(c)}{s^2+b^2}$ |
78+
| $\frac{\sin(bt)}{t}$ | $\arctan\left(\frac{b}{s}\right)$ |
79+
| $u(t) - u(t-a)$ (pulse) | $\frac{1-e^{-as}}{s}$ |
80+
| $e^{at} - e^{bt}$ | $\frac{1}{s-a} - \frac{1}{s-b}$ |
81+
82+
---
83+
84+
## Partial Fraction Decomposition (for Inverse Transforms)
85+
86+
When inverting rational functions, use partial fractions:
87+
88+
### Case 1: Distinct Linear Factors
89+
$$\frac{P(s)}{(s-a)(s-b)} = \frac{A}{s-a} + \frac{B}{s-b}$$
90+
91+
### Case 2: Repeated Linear Factors
92+
$$\frac{P(s)}{(s-a)^n} = \frac{A_1}{s-a} + \frac{A_2}{(s-a)^2} + \cdots + \frac{A_n}{(s-a)^n}$$
93+
94+
### Case 3: Quadratic Factors
95+
$$\frac{P(s)}{(s^2+bs+c)} = \frac{As+B}{s^2+bs+c}$$
96+
97+
Complete the square: $s^2+bs+c = (s+\frac{b}{2})^2 + (c-\frac{b^2}{4})$
98+
99+
---
100+
101+
## Common Inverse Transform Patterns
102+
103+
### Pattern 1: $\frac{1}{s^2+b^2}$
104+
$$\mathcal{L}^{-1}\left\{\frac{1}{s^2+b^2}\right\} = \frac{\sin(bt)}{b}$$
105+
106+
### Pattern 2: $\frac{s}{s^2+b^2}$
107+
$$\mathcal{L}^{-1}\left\{\frac{s}{s^2+b^2}\right\} = \cos(bt)$$
108+
109+
### Pattern 3: $\frac{1}{(s-a)^2+b^2}$
110+
$$\mathcal{L}^{-1}\left\{\frac{1}{(s-a)^2+b^2}\right\} = \frac{e^{at}\sin(bt)}{b}$$
111+
112+
### Pattern 4: $\frac{s-a}{(s-a)^2+b^2}$
113+
$$\mathcal{L}^{-1}\left\{\frac{s-a}{(s-a)^2+b^2}\right\} = e^{at}\cos(bt)$$
114+
115+
### Pattern 5: $\frac{1}{s(s+a)}$
116+
$$\mathcal{L}^{-1}\left\{\frac{1}{s(s+a)}\right\} = \frac{1}{a}(1-e^{-at})$$
117+
118+
### Pattern 6: $\frac{1}{(s-a)(s-b)}, a \neq b$
119+
$$\mathcal{L}^{-1}\left\{\frac{1}{(s-a)(s-b)}\right\} = \frac{e^{at}-e^{bt}}{a-b}$$

0 commit comments

Comments
 (0)