Mathematics Every Engineer Needs
Why Mathematics?
Mathematics is the language of nature. Physics is written in equations, circuits are analyzed with algebra, AC signals are described with trigonometry. An engineer who understands these tools can design instead of guess.
Linear Algebra: Solving Systems
Kirchhoff's circuit laws produce linear systems like:
10×I1 + 5×I2 = 24
5×I2 - 8×I3 = 0
Written as Ax = b and solved with matrix methods — finding currents in every branch.
Trigonometry: The Language of Waves
AC voltage: v(t) = V_max × sin(2πft)
sin and cos describe every periodic phenomenon: AC power, mechanical vibration, electromagnetic signals. Phase shift between voltage and current in AC systems is measured in degrees — critical for capacitor and inductor design.
Calculus: Rates of Change
The derivative measures how fast something changes:
- Velocity = dx/dt (derivative of position)
- Acceleration = dv/dt (derivative of velocity)
- PID controllers use derivatives to predict future error
The integral accumulates quantities:
- Energy = ∫P dt (integral of power over time)
- Charge = ∫I dt (integral of current)
- RMS value = √(1/T × ∫i² dt) — thermal equivalent of AC current
Differential Equations: System Dynamics
m × d²x/dt² + c × dx/dt + k × x = F(t)
This mass-spring-damper equation describes machine vibration, rotating shaft response, and RLC circuit behavior. Control systems are designed to make these equations converge to stable solutions.
Logarithms and Decibels
dB = 20 × log₁₀(V₂/V₁)
An amplifier with 1000× voltage gain = 60 dB — much easier to work with. Bode plots in control systems use logarithmic frequency axes.
Statistics: Quality Control
- Mean: μ = (Σx) / n — central value
- Standard deviation: σ = √(Σ(x-μ)²/n) — spread
- Six Sigma: fewer than 3.4 defects per million units — 99.99966% within specification
- Control charts: monitor production and alert when process exceeds 3σ limits
Vectors: Forces in 3D Space
Vectors have both magnitude and direction. Essential for: structural force analysis, robot arm positioning, electromagnetic field calculations.
Key operations: dot product (work = F·d), cross product (torque = r × F).
Summary
Engineering mathematics is not abstract — every tool has a direct application: algebra for circuit analysis, trigonometry for signals, derivatives for rates of change, integrals for accumulated energy, differential equations for control system design, and statistics for quality assurance.