Matrix solutions of the linear algebraic equation, MATLAB in Engineering

Assignment Help:

Matrix solutions to systems of the linear algebraic equations:

The linear algebraic equation is an equation of the form

a1x1 + a2x2 + a3x3   .  .  .  .  anxn = b

Where a's are the constant coefficients, the x's are the unknowns, and b be constant. A solution is a series of numbers s1, s2, and s3 which satisfy the equation. The illustration is as follows,

4x1 +  5x2 - 2x3 = 16

is such an equation in which there are 3 unknowns: x1, x2, and x3. The One solution to this equation is x1 = 3, x2 = 4, and x3 = 8, as 4 * 3 + 5 * 4 - 2 * 8 is equal to 16.

The system of linear algebraic equations is a set of equations of the form:

621_Matrix solutions of the linear algebraic equation.png

 

This is known as m × n system of equations; there are m equations and n unknowns.

As of the way that matrix multiplication works, such equations can be presented in matrix form as Ax = b here A is a matrix of the coefficients, x is the column vector of the unknowns, and b is the column vector of constants from the right-hand side of the equations:

A solution set is a set of all the possible solutions to the system of equations (all sets of values for the unknowns which solve the equations). All the systems of linear equations have either:

  •  No solutions
  •  One solution
  •  Infinitely many solutions

The one of the main concepts of the subject of linear algebra is the various techniques of solving (or trying to solve!) systems of the linear algebraic equations. The MATLAB has many functions which assist in this process.

The system of equations has been once written in matrix form, what we want is to evaluate the equation Ax = b for the unknown x. To do this, we require to isolate x on one side of the equation. If we were working with scalars, then we divide both sides of the equation by x. However, with the MATLAB we can use the divided into operator to do this. Though, most languages cannot do this with matrices, therefore we rather multiply both sides of the equation by the inverse of the coefficient matrix A:

A-1 A x = A-1 b

Then, as multiplying a matrix by its inverse results in the identity matrix I, and since multiplying any matrix by I answers in the original matrix, we contain:

I x = A-1 b

or

x = A-1 b

This means that the column vector of unknown x is found as the inverse of matrix A multiplied by the column vector b. Therefore, if we can find the inverse of A, we can resolve for the unknown in x.


Related Discussions:- Matrix solutions of the linear algebraic equation

Illustration of matrix solutions, Illustration of Matrix solutions: Fo...

Illustration of Matrix solutions: For illustration, consider the three equations below with 3unknowns x 1 ,x 2 , and x 3 : We can write this in the form Ax = b here A

Str2num function - string, str2num function - String: The function str2...

str2num function - String: The function str2num does the opposite; it takes the string in which a number is stored and converts it to the type double: >> num = str2num('123.

Interpolation and extrapolation, Interpolation and extrapolation: In m...

Interpolation and extrapolation: In most cases, it is desired to estimate values other than at the sampled data points. For illustration, we may want to estimate what the temp

Algorithm for subfunction, Algorithm for subfunction: The algorithm fo...

Algorithm for subfunction: The algorithm for subfunction askforn is as shown:  Prompt the user for the positive integer n.  Loop to print an error message and reprom

Example exit modular program, Example Exit modular program: In the ill...

Example Exit modular program: In the illustration below, the user  Chose the Limit; -   Whenever prompted for n, entered the two invalid values before finally ente

Gauss, Gauss, Gauss-Jordan elimination: For 2 × 2 systems of equations...

Gauss, Gauss-Jordan elimination: For 2 × 2 systems of equations, there are well-defined, easy solution techniques. Though, for the larger systems of equations, finding solutio

Algorithm for appex subfunction, Algorithm for appex subfunction: The ...

Algorithm for appex subfunction: The algorithm for appex subfunction is as shown:  Receives x & n as the input arguments.  Initializes a variable for running sum of t

Algorithm for the function e, Algorithm for the function e: The algori...

Algorithm for the function e: The algorithm for the function eoption is as shown: Use the menu function to show the 4 choices. Error-check (an error would take place

Converting between the string and number types, Converting between the Stri...

Converting between the String and Number types: The MATLAB has many functions which convert numbers to strings in which each character element is a separate digit, and vice ve

Illustration of subfunctions, Illustration of Subfunctions: This is an...

Illustration of Subfunctions: This is an illustration of running this program: >> rectarea Please enter the length: 6 Please enter the width: 3 For a rectan

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd