- Authors

- Name
- Youngju Kim
- @fjvbn20031
Engineering Math Series 1: Why Engineering Mathematics Matters
Engineering mathematics is not a subject that makes math problems harder. It is closer to a language for turning real-world systems into models and organizing them into analyzable forms. The reason different fields such as electrical circuits, vibrations, probability models, signal processing, and machine learning optimization all converge on similar mathematical structures lies right here.
This series is prepared for undergraduates who have just learned calculus or want to review it, and for developers who want to re-understand mathematics from a practical perspective. While following the flow of the textbook, I will focus on "why is it needed, where is it used, and how do you compute it by hand" rather than compressed textbook-style descriptions.
When Engineering Mathematics Is Needed
Many problems encountered in engineering can be summarized by three questions.
- How does the system state change over time
- How are multiple variables connected to each other
- How much does a small change affect the overall result
For example, looking at an RC circuit, the voltage does not jump instantly to the target value but changes gradually. A mass-spring system oscillates with damping once disturbed. Server load and network queue length also change state over time. When you write these phenomena as equations, they usually become differential equations, and to handle these differential equations well, you need linear algebra, transforms, numerical analysis, and probability in sequence.
The Big Map of Engineering Mathematics
The overall flow of this textbook and series is as follows.
- Ordinary differential equations
- Laplace transform
- Matrices and linear algebra
- Vector calculus
- Fourier analysis and partial differential equations
- Complex analysis
- Numerical methods, optimization, probability and statistics
This order is not accidental. First you learn how to set up equations for dynamic systems, then you learn tools to solve those equations efficiently, and later you deal with higher-dimensional structures and spatial phenomena.
Modeling Is the Core
The most important ability in engineering mathematics is the power to turn complex reality into an appropriate mathematical model. For example, free fall without air resistance becomes a very simple second-order differential equation, but if you assume resistance is proportional to velocity, the model changes. The process of deciding which model is more realistic and how much complexity to allow is exactly what modeling is.
A good model satisfies three conditions.
- It sufficiently explains the phenomenon
- It is computationally feasible
- The results can be interpreted
If it is too simple, you miss reality; if too complex, you cannot see the core structure at the learning stage. That is why at the introductory level, it is better to first see the structure with a simple model and add corrections later.
A Representative Example
The simplest growth model is as follows.
This equation means "the rate of change is proportional to the current size." A positive gives exponential growth, and a negative gives exponential decay. You can think of bacterial population growth, radioactive decay, or the decay model of some cached value.
The solution is as follows.
What matters is not the formula itself, but the perspective of "converting a phenomenon into a rule about rates of change and reading long-term behavior through the solution." Almost every chapter of engineering mathematics is a slightly expanded version of this perspective.
Why It Matters for Developers Too
Developers are often more familiar with implementation and systems than mathematical formulas. However, engineering mathematics directly connects to the following areas.
- Linear algebra in recommendation systems and regression models
- The Fourier perspective in logs, time series, and frequency analysis
- Differential equations in control, simulation, and physics engines
- Statistics in probability models, A/B testing, and monitoring metric analysis
- Graph theory in optimization and pathfinding
In other words, engineering mathematics is not a subject exclusive to a specific major, but can be seen as training in thinking that reads phenomena through numbers and structure.
Common Mistakes Beginners Make
Trying to memorize formulas first
In engineering mathematics, the ability to classify "what form a problem has" is more important than formula memorization. Even for the same differential equation, the approach differs depending on whether it is separable, linear, or has constant coefficients.
Getting stuck on computation and missing the meaning
Computation is necessary, but if you cannot explain what the result means physically, you only have half the understanding. For example, practicing reading whether a solution diverges, decays, or oscillates is important.
Expecting every problem to have a closed-form solution
Real-world problems often cannot be solved neatly by hand. That is why numerical methods and approximations become increasingly important. Engineering mathematics is not a subject where you only learn "exact formulas."
How to Read This Series
This series recommends the following order.
- Read the definition and first understand why it is needed
- Rewrite the key formulas yourself
- Follow the examples by hand
- Look at application examples and connect them to interpretation
- Check common mistakes
At the beginning, it is much more effective to solidly connect one post at a time rather than rushing through.
One-Line Summary
Engineering mathematics is a subject about turning complex real-world systems into mathematical models and learning how to analyze their structure.
Next Post Preview
In the next post, we will start from the very beginning with what exactly a first-order differential equation is and what it actually means to deal with rates of change.
References
- Erwin Kreyszig, Advanced Engineering Mathematics, 10th Edition
- Gilbert Strang, Differential Equations and Linear Algebra
- MIT OpenCourseWare, Mathematics for Engineers lecture materials