Gauss Jordan Method Algorithm and Flowchart
Gauss Jordan method is commonly used to find the solution of linear simultaneous equations. In science and engineering, it is used to find the output of a chemical plant, examine a network under...
View ArticleGauss-Seidel Method Algorithm and Flowchart
Gauss-Seidel and Gauss Jacobi method are iterative methods used to find the solution of a system of linear simultaneous equations. Both are based on fixed point iteration method. Whether it’s a...
View ArticlePower Method Algorithm and Flowchart
Power method is used to find the largest Eigen value and the corresponding Eigen vector for a given system of linear simultaneous equations. In this post, I have included simple algorithm and flowchart...
View ArticleLU Decomposition Algorithm and Flowchart
LU decomposition, also known as LU factorization, is one of the common methods adopted to find the solution of linear simultaneous equations in numerical analysis and other engineering problems. In...
View ArticleFloyd’s Triangle Algorithm and Flowchart
Floyd’s triangle can be defined as a series of numbers which are sequentially spread across a series of rows. It is named after Robert Floyd. This triangle is simply a right-angle triangular array of...
View ArticleFibonacci Series Algorithm and Flowchart
Fibonacci series is defined as a sequence of numbers in which the first two numbers are 1 and 1, or 0 and 1, depending on the selected beginning point of the sequence, and each subsequent number is the...
View ArticlePascal’s Triangle Algorithm and Flowchart
Along with the source code, the algorithm and flowchart for Pascal’s triangle is a common problem in any high level language, especially C and C++. In this post, I have presented a simple algorithm and...
View ArticleTrapezoidal Method Algorithm and Flowchart
Definite integral is replica of area under a curve within the certain limit. In order to calculate such area, there have been developed a number of analytical methods but they are time-consuming,...
View ArticleTower of Hanoi Algorithm and Flowchart
Tower of Hanoi is a mathematical puzzle with three rods and ‘n’ numbers of discs; the puzzle was invented by the French mathematician Edouard Lucas in 1883. The objective of this puzzle is to transfer...
View ArticleMatrix Multiplication Algorithm and Flowchart
Multiplication of matrices is a very popular tutorial generally included in Arrays of C Programming. In this post, we’re going to discuss an algorithm for Matrix multiplication along with its...
View Article