Eccentricity
FacultyAnnouncementsNoticesEventsBlogsGalleryDepartment

Eccentricity

Department of Mathematics
Jagannath University
Dhaka, Bangladesh

Department

FacultyAnnouncementsNoticesEventsDepartment

Content

BlogsGallery

Portal

LoginRegisterStudentsResources

© 2026 Department of Mathematics, Jagannath University

Built with Next.js · Eccentricity v2

← Back to Blogs
numerical analysisalgorithms

A Beginner's Guide to Numerical Methods

By Tanzil Al Siam· 8 May 2026

Many mathematical problems in the real world cannot be solved exactly using simple algebraic formulas. That is where numerical methods become essential.

Numerical methods are techniques used to approximate solutions to mathematical problems using iterative calculations. Instead of finding a perfect symbolic answer, we aim for an answer that is sufficiently accurate for practical use.

This field is extremely important in science, engineering, economics, artificial intelligence, and computer simulations.

For example:

  • Weather forecasting relies heavily on numerical computations.

  • Space missions use numerical techniques for trajectory calculations.

  • Engineers simulate structures using approximation methods.

  • AI systems depend on optimization algorithms derived from numerical analysis.

One of the first concepts students encounter is root-finding methods.

Suppose we need to solve an equation like:

x3−x−2=0x^3 - x - 2 = 0x3−x−2=0

Finding an exact algebraic solution may be difficult. Numerical methods such as:

  • Bisection Method

  • Newton-Raphson Method

  • False Position Method

  • Fixed Point Iteration

allow us to approximate the root step by step.

For example, Newton-Raphson uses tangent lines to rapidly approach the solution:

xn+1=xn−f(xn)f′(xn)x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}xn+1​=xn​−f′(xn​)f(xn​)​

The method is powerful because it converges very quickly when the initial guess is close to the actual root.

Another important area is interpolation. Sometimes we only know discrete data points instead of a full function. Interpolation methods estimate unknown values between known data points.

This becomes useful in:

  • Data science

  • Signal processing

  • Computer graphics

  • Scientific experiments

Students often struggle with numerical methods because they focus only on formulas instead of understanding the intuition behind them.

Every numerical method is essentially trying to answer one question:
“How can we get close enough to the correct answer efficiently?”

That mindset changes everything.

Numerical analysis is not just about solving equations. It is about building computational thinking — the ability to solve imperfect real-world problems using approximation, iteration, and logical optimization.

Log in to like this post