Let's Learn Computing
Pages
(Move to ...)
Home
Revision Presentations
▼
Showing posts with label
Numerical Methods
.
Show all posts
Showing posts with label
Numerical Methods
.
Show all posts
Tuesday, 4 June 2013
Horner's Method
›
Horner's method is an efficient way of evaluating polynomials and their derivatives at a given point. It is also used for a compact p...
Friday, 19 April 2013
C program for Cubic Spline Interpolation
›
#include<stdio.h> #include<conio.h> #include<math.h> void main(){ clrscr(); char choice='y'; int n,i,j...
8 comments:
C++ program for Newton-Raphson Method
›
#include<iostream.h> #include<conio.h> #include<math.h> #define EPS 0.000001 #define MAXIT 20 #define F(x) (x)*(x)*...
Wednesday, 3 April 2013
C Program for Bisection Method
›
Basic Theory: T he bisection method is a method to find the real root of an equation in which the interval is always divided into half f...
Sunday, 17 March 2013
C Program for Lagrange's Interpolation
›
#include<stdio.h> #include<conio.h> #define MAX 10 void main(){ clrscr(); float x[MAX+1], fx[MAX+1], num, den, val...
C Program for Horner's Method
›
#include<stdio.h> #include<conio.h> #include<math.h> float p[6], ply[6], q[6]; float synth(int m, float r){...
C Program for Birge-Vieta Method
›
Basic Theory: The Birge-Vieta method investigates the real root of a polynomial, say x r , by assuming that (x- x r ) is a factor of tha...
6 comments:
C Program for Synthetic Division with algorithm and example
›
Algorithm of Synthetic Division: Given a polynomial of form p(x) = a n x n + a n-1 x n-1 +…+ a 1 x+ a 0 , we can divide it by a linear f...
1 comment:
C Program for Secant Method
›
#include<stdio.h> #include<conio.h> #include<math.h> #define E 0.0001 #define F(x) x*x - 4*x - 10 void main()...
›
Home
View web version