Skip to main content

Laplace Transform Calculator

Calculate laplace transform instantly with our math tool. Shows detailed work, formulas used, and multiple solution methods.

Share this calculator

Formula

F(s) = integral(0 to inf) f(t) * e^(-st) dt

The Laplace Transform integrates the product of f(t) and the complex exponential kernel e^(-st) from 0 to infinity. This converts time-domain functions into s-domain algebraic expressions, transforming differential equations into solvable polynomial equations.

Worked Examples

Example 1: RC Circuit Step Response

Problem: Find the Laplace Transform of f(t) = 3*e^(-2t) and evaluate at s = 4.

Solution: Using the exponential transform pair:\nL{A*e^(-alpha*t)} = A / (s + alpha)\nHere A = 3, alpha = 2\nF(s) = 3 / (s + 2)\nAt s = 4: F(4) = 3 / (4 + 2) = 3/6 = 0.5\nPole at s = -2 (left half-plane, so stable)\nROC: Re(s) > -2\nInitial value: lim s*3/(s+2) = 3\nFinal value: lim s*3/(s+2) as s->0 = 0

Result: F(s) = 3/(s+2) | F(4) = 0.5 | Pole at s=-2 (stable) | f(0) = 3, f(inf) = 0

Example 2: Damped Oscillator Analysis

Problem: Find the Laplace Transform of f(t) = 3*e^(-2t)*sin(5t) and analyze stability.

Solution: Using the damped sine transform pair:\nL{A*e^(-alpha*t)*sin(omega*t)} = A*omega / ((s+alpha)^2 + omega^2)\nA=3, alpha=2, omega=5\nF(s) = 15 / ((s+2)^2 + 25) = 15 / (s^2 + 4s + 29)\nPoles at s = -2 + 5j and s = -2 - 5j\nBoth poles in left half-plane: STABLE\nNatural frequency: sqrt(29) = 5.385 rad/s\nDamping ratio: 2/5.385 = 0.371

Result: F(s) = 15/(s^2+4s+29) | Poles: -2 +/- 5j (stable) | Underdamped oscillation

Frequently Asked Questions

What is the Laplace Transform and why is it used?

The Laplace Transform converts a time-domain function f(t) into a complex frequency-domain function F(s), where s = sigma + j*omega is a complex variable. The transform is defined as the integral from 0 to infinity of f(t)*e^(-st) dt. This conversion is incredibly powerful because it transforms differential equations (which are difficult to solve) into algebraic equations (which are straightforward). Once solved in the s-domain, the inverse Laplace Transform converts the result back to the time domain. The Laplace Transform is the primary tool in control systems engineering, circuit analysis, mechanical vibrations, and signal processing because it handles initial conditions naturally and simplifies system analysis.

What is the difference between Laplace and Fourier Transforms?

The Fourier Transform uses a purely imaginary variable (s = j*omega), while the Laplace Transform uses the full complex variable s = sigma + j*omega. This means the Laplace Transform includes an exponential convergence factor e^(-sigma*t) that allows it to handle functions that grow exponentially, which the Fourier Transform cannot. The Fourier Transform requires functions to be absolutely integrable, but the Laplace Transform works on a broader class of functions. The Fourier Transform is a special case of the Laplace Transform evaluated on the imaginary axis. In practice, the Fourier Transform is preferred for steady-state frequency analysis, while the Laplace Transform handles transient behavior and stability analysis.

What are poles and zeros in the Laplace domain?

Poles are values of s where the transfer function F(s) goes to infinity (denominator equals zero), while zeros are values where F(s) equals zero (numerator equals zero). Poles determine the natural response modes of a system: a pole at s = -a produces an exponential e^(-at), poles at s = j*omega produce oscillations at frequency omega, and a pole at s = -a + j*omega produces a damped oscillation. The location of poles in the s-plane directly indicates stability: poles in the left half-plane mean stable (decaying) modes, poles in the right half-plane mean unstable (growing) modes, and poles on the imaginary axis mean marginal stability. Zeros shape the frequency response and determine which input frequencies are blocked.

How do you perform inverse Laplace Transforms?

The inverse Laplace Transform converts F(s) back to f(t) using several techniques. Partial fraction decomposition is the most common method: decompose F(s) into simple fractions whose inverse transforms are known from tables. For example, A/(s+a) transforms to A*e^(-at). For repeated poles, use terms like A/(s+a)^n which transform to A*t^(n-1)*e^(-at)/(n-1)!. Complex conjugate poles produce sinusoidal terms. The formal inverse uses the Bromwich integral along a vertical contour in the s-plane, but this is rarely needed in practice. Residue calculus provides another powerful method. Modern engineering relies heavily on transform tables and computer algebra systems for complex inverse transforms.

How is the Laplace Transform used in solving differential equations?

The Laplace Transform converts an ordinary differential equation with constant coefficients into an algebraic equation in s. Derivatives transform as: L{f'(t)} = s*F(s) - f(0) and L{f''(t)} = s^2*F(s) - s*f(0) - f'(0), automatically incorporating initial conditions. For example, the equation y'' + 3y' + 2y = e^(-t) with y(0)=1, y'(0)=0 becomes s^2*Y - s - 0 + 3(sY - 1) + 2Y = 1/(s+1), yielding Y(s) = (s^2 + 4s + 4)/((s+1)(s+2)(s^2+3s+2)). Solve for Y(s) algebraically, then apply partial fractions and inverse transforms. This systematic approach replaces guessing particular solutions and handles any forcing function.

What is a transfer function and how does it relate to the Laplace Transform?

A transfer function H(s) is the ratio of the Laplace Transform of the output to the Laplace Transform of the input, assuming zero initial conditions: H(s) = Y(s)/X(s). It completely characterizes a linear time-invariant (LTI) system and is independent of the specific input signal. The transfer function encodes the system poles (natural frequencies and damping), zeros (frequency-dependent gain characteristics), and the overall gain. From H(s), engineers can determine stability (all poles in left half-plane), frequency response (evaluate H(j*omega)), step response (multiply by 1/s and inverse transform), and impulse response (directly inverse transform H(s)). Transfer functions are the foundation of classical control theory.

References