Introduction to Linear Systems in Linear Algebra

Introduction to Linear Systems:

How linear systems occur:

Linear systems of equations naturally take place in many places in engineering such as structural analysis dynamics as well as electric circuits. Computers have made it probable to quickly and accurately solve larger and larger systems of equations. Not merely has this allowed engineers to handle more and more complex problems where linear systems naturally occur but has as well prompted engineers to use linear systems to solve problems where they don’t naturally occur such as internal stress-strain analysis, thermodynamics, fluids and chemical processes. It has become standard practice in several areas to analyze a problem by transforming it into linear systems of equations as well as then solving those equations by computer. In this way computers have made linear systems of equations the most frequently utilized tool in modern engineering.

In Figure we demonstrate a truss with equilateral triangles. In Statics you may perhaps use the ‘method of joints’ to write equations for each node of the truss. This set of equations is an instance of a linear system. Making the estimate √3/2 ≈ .8660 the equations for this truss are:

.5 T1 + T2 = R1 = f1
.866 T1 = − R2 = −.433 f1− .5 f2
−.5 T1 + .5 T3 + T4 = − f1
.866 T1 + .866 T3 = 0
− T2− .5 T3 + .5 T5 + T6 = 0
.866 T3 + .866 T5 = f2
− T4− .5 T5 + .5 T7 = 0,

Where Ti stand for the tension in the i-th member of the truss. You could resolve this system by hand with a little time and patience systematically eliminating variables as well as substituting. Clearly it would be a lot better to place the equations on a computer and let the computer solve it. The initial key to dealing with linear systems is to realize that they are equivalent to matrices which contain numbers not variables.

As we converse various aspects of matrices we wish to keep in mind that the matrices that come up in engineering systems are really large. It isn’t unusual in real engineering to use matrices whose dimensions are in the thousands! It is habitually the case that a method that is fine for a 2×2 or 3×3 matrix is entirely inappropriate for a 2000×2000 matrix. We therefore want to emphasize methods that work for large matrices.

330_big matrix.jpg

An rhombus truss. Joints or else nodes are labelled alphabetically, A, B, . . . and Members (edges) are labelled numerically: 1, 2, . . . . The forces f1 as well as f2 are applied loads and R1, R2 and R3 are reaction forces applied by the supports.

Linear systems are equal to matrix equations:

A system of linear equations,

x1− 2x2 + 3x3 = 4
2x1− 5x2 + 12x3 = 15
2x2− 10x3 = −10,

Is equal to the matrix equation,

290_matrix equation.jpg

Which is equal to the augmented matrix,

1234_augmented matrix.jpg

The benefit of the augmented matrix is that it contains merely numbers not variables. The reason this is improved is because computers are much better in dealing with numbers than variables. To solve this system the major steps are called Gaussian elimination and back substitution.

The augmented matrix for the rhombus truss equations is given by:

2103_truss equation.jpg

Note that plenty of the entries are 0. Matrices similar to this called sparse are common in applications and there are methods specifically designed to efficiently handle sparse matrices.

Triangular matrices as well as back substitution:

Regard as a linear system whose augmented matrix happens to be:

2392_augmented matrix.jpg

Recall that every row represents an equation and each column a variable. The last row stand for the equation 2x3 = 4. The equation is simply solved that is x3 = 2. The second row stand for the equation −x2 + 6x3 = 7 but since we know x3 = 2 this simplifies to- −x2 + 12 = 7. This is simply solved giving x2 = 5. Ultimately since we know x2 and x3 the first row simplifies to - x1−10 + 6 = 4. Therefore we have x1 = 8 and consequently we know the whole solution vector: x = {8, 5, 2}. The process we merely did is called back substitution which is both efficient as well as easily programmed. The property that made it probable to solve the system so easily is that A in this case is upper triangular. In the next section we demonstrate an efficient way to transform an augmented matrix into an upper triangular matrix.

Gaussian Elimination:

Consider the matrix:

791_gaussian elimination.jpg

The first step of Gaussian removal is to get rid of the 2 in the (2,1) position through subtracting 2 times the first row from the second row that is (new 2nd = old 2nd - (2) 1st). We are able to do this because it is essentially the same as adding equations which is a valid algebraic operation. This direct to:

2393_gaussian elimination_2.jpg

There is previously a zero in the lower left corner thus we don’t need to eliminate anything there. To eradicate the third row second column we need to subtract −2 times the second row from the third row (new 3rd = old 3rd - (-2) 2nd):

1691_gaussian elimination_3.jpg

This is now just exactly the matrix in equation (9.3), which we can now solve by back substitution.

Mat lab’s matrix solve command:

In Mat lab the standard means to solve a system Ax = b is by the command:

> x = A\b

This command carries out Gaussian removal and back substitution. We are able to do the above computations as follows:

> A = [1 -2 3 ; 2 -5 12 ; 0 2 -10]
> b = [4 15 -10]’
> x = A\b

Next utilize the Mat lab commands above to solve Ax = b when the augmented matrix for the system is:

2179_augmented matrix.jpg

By entering:

>x1 = A\b Check the result by entering:
> A*x1 - b

You will observe that the resulting answer satisfies the equation exactly. Next try solving utilize the inverse of A:

>x2 = inv(A)*b

This answer is able to be seen to be inaccurate by checking

> A*x2 - b

Therefore we see one of the reasons why the inverse is never utilized for actual computations only for theory.

Latest technology based Matlab Programming Online Tutoring Assistance

Tutors, at the www.tutorsglobe.com, take pledge to provide full satisfaction and assurance in Matlab Programming help via online tutoring. Students are getting 100% satisfaction by online tutors across the globe. Here you can get homework help for Matlab Programming, project ideas and tutorials. We provide email based Matlab Programming help. You can join us to ask queries 24x7 with live, experienced and qualified online tutors specialized in Matlab Programming. Through Online Tutoring, you would be able to complete your homework or assignments at your home. Tutors at the TutorsGlobe are committed to provide the best quality online tutoring assistance for Matlab Programming Homework help and assignment help services. They use their experience, as they have solved thousands of the Matlab Programming assignments, which may help you to solve your complex issues of Matlab Programming. TutorsGlobe assure for the best quality compliance to your homework. Compromise with quality is not in our dictionary. If we feel that we are not able to provide the homework help as per the deadline or given instruction by the student, we refund the money of the student without any delay.

©TutorsGlobe All rights reserved 2022-2023.