Use root finding, interpolation, regression, numerical integration, ODE solvers, uncertainty, and validation.
Course outline only for now. Full chapter-level lessons are still in progress. Use this page for readiness, concepts, worked-example format, practice, review, and portfolio direction. Complete course contents are live today for Math, Physics, and Statics.
01
Readiness check
Before starting, confirm the prerequisite habits.
Evaluate functions carefully.
Understand sign-change roots.
Use tolerances instead of exact equality.
Plot a function before solving.
0 or 1 weak itemContinue, but slow down at the worked example.
2 weak itemsReview the foundation page linked in the roadmap before solving practice problems.
3 or more weak itemsStep back to prerequisites; this module depends on them.
02
The core idea
Choose numerical methods that are accurate enough and visibly checked against physics or data.
Numerical methods trade exact solutions for iterative approximations; the skill is bracketing or bounding the answer and stopping on a defensible convergence criterion, not running iterations blindly.
bisect bracket
Works when: you bracket or bound the solution and stop on an explicit tolerance, then check the residual.
Breaks down when: you iterate until the numbers look settled with no convergence test or residual check.
Figure 1. Concept model for Numerical Methods and Data. The figure names inputs, computed variables, geometry, and result.
Figure 2. Worked problem setup: Find the root of f(x) = x^3 - x - 2 in the bracket [1, 2] until the interval is shorter than 0.01.Figure 3. Calculation model. The result follows from the model, units, and reasonableness check.
Find the root of f(x) = x^3 - x - 2 in the bracket [1, 2] until the interval is shorter than 0.01.
Problem Find the root of f(x) = x^3 - x - 2 in the bracket [1, 2] until the interval is shorter than 0.01.
Given and find f(1) = -2, f(2) = 4, tolerance 0.01. Find: Root estimate.
Assumptions Idealized model, consistent units, and no hidden effects outside the stated scope.
Step The sign changes over [1,2], so a root is bracketed.
Step Repeated bisection narrows the interval.
Step The root estimate is about 1.52.
Step Check by substitution: f(1.52) is near zero.
Conclusion x about 1.52. Carry this result into the design decision, not just into the answer box.
05
Misconceptions and diagnostics
Mistake
Symptom
Diagnostic question
Correction
No convergence criterion
Stops iterating arbitrarily
What tolerance did you set?
Stop when the interval or residual falls below a stated tolerance.
Ignoring conditioning
Trusts a near-singular system
Is the matrix well-conditioned?
Check conditioning before trusting the solve.
Step size too large
Integration diverges or oscillates
Is the step small enough for stability?
Reduce the step or check the stability limit.
06
Practice ladder
Level 1: direct skill
Redo the worked example with one changed input. Predict the trend before calculating.
Check yourself
The trend must match the governing relation: bisect bracket.
Level 2: mixed concept
Draw the model from memory, label knowns and unknowns, then write the first equation without looking.
Check yourself
Your first equation should connect the model to root.
Level 3: independent problem
Create a similar problem from a real object near you. State assumptions, solve it, and include a reasonableness check.
Check yourself
A valid solution has a sketch, given/find list, governing relation, units, and a conclusion.
Level 4: transfer task
Turn the result into a design decision: what would you change if the output missed its target by 25 percent?
Check yourself
Name the design variable with the strongest influence and justify it from the equation.
07
Working with AI, and proving it yourself
Useful AI role
Ask for a critique of assumptions, units, diagram labels, and missing checks after you have attempted the solution.
Do not outsource
Do not paste the problem and accept a final answer. Your evidence is the model, the checks, and the explanation.
08
Retrieval and spaced review
Closed-notes prompts: state the equation to solve, choose a bracketing or iterative method, write the convergence criterion, and bound the error of your result.
TodayRedo the worked example from a blank page.
+1 daySolve Level 1 without notes.
+3 daysSolve Level 2 with changed numbers.
+7 daysConnect this module to another course.
+30 daysAdd a portfolio artifact.
09
Mapping and portfolio task
Course mapping
Numerical methods is the toolkit FEM, CFD, and controls all run on: bisection, Newton, and numerical integration here are the primitives those solvers iterate.
First-pass focus: definitions, model setup, units, and worked examples. Save edge cases for the second pass.
Portfolio task
Create a one-page root-finding or integration note with a stated convergence criterion: sketch, assumptions, equations, result, reasonableness check, limitation, and recommendation.