Matrix Operations
In this section, you will learn common mathematical operations performed on matrices. These operations range from common arithmetic operations such as addition, subtraction, multiplication to… Read More »Matrix Operations
In this section, you will learn common mathematical operations performed on matrices. These operations range from common arithmetic operations such as addition, subtraction, multiplication to… Read More »Matrix Operations
Gaussian elimination is a technique to change the augmented matrix into a row echelon form.There are many echelon forms, but subsequently, we must find the… Read More »Gaussian Elimination
Previously, you learned about deriving an augmented matrix from a system of linear equations. You have also learned about reducing the augmented matrix into a… Read More »Row Echelon Form
The hash table is perfect solution to store dictionary where each data is uniquely identified using a key. The dictionaries are implemented using arrays. The… Read More »Hash Table
Earlier we learnt that we can solve for unknown variables by substituting arbitrary values for the equation. You can by solving for or one at… Read More »Elementary Row Operations
In the previous article, we learned about systems of linear equations can be represented using a matrix or augmented matrix. There are many types of… Read More »Types Of Matrices
Some linear systems have no solution; they are called inconsistent systems. If a linear system has at least one solution than it is called consistent… Read More »Consistent And Inconsistent Linear System
Before you we try to understand the system of linear equations, we must understand the basic terminologies that we are going to use in the… Read More »System of Linear Equations
The Fibonacci search algorithm is another variant of binary search based on divide and conquer technique. The binary search as you may have learned earlier… Read More »Fibonacci Search Algorithm
The binary search algorithm is very popular search algorithm. It is also known as half-interval search or uniform binary search as it split the array… Read More »Binary Search Algorithm