Solve Multiple Equations Simultaneously with Octave: Computerizing the Ax=b Solution Set

Опубликовано: 13 Ноябрь 2024
на канале: Andrew
9,447
20

Octave code link: https://github.com/andrewrgarcia/octa...
Octave download: http://www.gnu.org/software/octave/do...

This video shows a method that can be used to solve for N variables from N equations by arranging them in matrix form A*x = b and solving the matrix for the values of x vector using Octave.


---------Intro dialogue-----------------------------

Solving several equations simultaneously can be tedious .

The degree of complexity will be higher as the number of equations that need to be solved increases.

For example, if we must solve 6 equations simultneously in order to solve for 6 variable, the substitution method (e.g. subs one equation into another) can be very tedious.

Likewise, solving for more thqan 10 equations by pen and paper (even by linear algebra methods) is truly INSANE.

In this video I will show how to use a computerized method based on the linear algebra matrix concept on the solution set of Ax = b

LETS START