Equations »

C program to find roots of quadratic equation

Mr Coder September 16, 2012 6

C program to find roots of quadratic equation : In mathematics, quadratic equation is second degree univariate polynomial equation. A general quadratic equation can be represented by : where a, b and c are

Read More »

C program of Newton Backward Interpolation Formula

Mr Coder August 25, 2012 12

C program of Newton Backward Interpolation formula : Newton has proposed several methods of estimating the values of any number at certain point by learning the behavior of previous values. Newton’s Backward interpolation formula

Read More »

C program of Newton Raphson Method | C code champ

Mr Coder August 20, 2012 9

C program of Newton Raphson Method : Newton Raphson method is a method of approximating a root of the polynomial equation also called the method of tangents. In Newton’s method, the initial (“first”) approximation

Read More »

C program of Regula Falsi method to find root

Mr Coder August 20, 2012 1

C program of Regula Falsi method to find root of polynomials : The Regula–Falsi Method is a numerical method for estimating the roots of a polynomial f(x).   A value x replaces the midpoint

Read More »

C program of Gauss Jordan Method

Mr Coder August 15, 2012 2

C program to solve 3 Linear equations using Gauss Jordan Method. This program takes 4X4 matrix values as input and displays output in form of cool animated matrix.Let us see C program of Gauss

Read More »