Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Suppose an experiment leads to the following system of equations:

\(\begin{aligned}{c}{\bf{4}}.{\bf{5}}{x_{\bf{1}}} + {\bf{3}}.{\bf{1}}{x_{\bf{2}}} = {\bf{19}}.{\bf{249}}\\1.6{x_{\bf{1}}} + 1.1{x_{\bf{2}}} = 6.843\end{aligned}\) (3)

  1. Solve system (3), and then solve system (4), below, in which the data on the right have been rounded to two decimal places. In each case, find the exactsolution.

\(\begin{aligned}{c}{\bf{4}}.{\bf{5}}{x_{\bf{1}}} + {\bf{3}}.{\bf{1}}{x_{\bf{2}}} = {\bf{19}}.{\bf{25}}\\1.6{x_{\bf{1}}} + 1.1{x_{\bf{2}}} = 6.8{\bf{4}}\end{aligned}\) (4)

  1. The entries in (4) differ from those in (3) by less than .05%. Find the percentage error when using the solution of (4) as an approximation for the solution of (3).
  1. Use your matrix program to produce the condition number of the coefficient matrix in (3).

Short Answer

Expert verified
  1. The exact solution of (3) is \({x_1} = 3.94\) and \({x_2} = 0.49\). The exact solution of (4) is \({x_1} = 2.90\) and \({x_2} = 2.00\).
  2. The percentage error in\({x_1} = 2.90\)when using the solution of (4) as an approximation for the solution of (3) is\(26\% \). The percentage error in\({x_2} = 2.00\)when using the solution of (4) as an approximation for the solution of (3) is\(308\% \).
  3. The condition number of the coefficient matrix is 3363.

Step by step solution

01

(a) Step 1: Obtain the augmented matrix

Consider the system of equations (3).

\(\begin{aligned}{c}4.5{x_1} + 3.1{x_2} = 19.249\\1.6{x_1} + 1.1{x_2} = 6.843\end{aligned}\)

\(A{\bf{x}} = b\)can be represented as shown below:

\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}\\{1.6}&{1.1}\end{aligned}} \right)\left( {\begin{aligned}{*{20}{c}}{{x_1}}\\{{x_2}}\end{aligned}} \right) = \left( {\begin{aligned}{*{20}{c}}{19.249}\\{6.843}\end{aligned}} \right)\)

Write the augmented matrix\(\left( {\begin{aligned}{*{20}{c}}A&{\bf{b}}\end{aligned}} \right)\)as shown below:

\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}&{19.249}\\{1.6}&{1.1}&{6.843}\end{aligned}} \right)\)

02

Convert the augmented matrix into the row-reduced echelon form

Consider the augmented matrix\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}&{19.249}\\{1.6}&{1.1}&{6.843}\end{aligned}} \right)\).

Use the code in MATLAB to obtain therow-reduced echelon form.

\(\begin{aligned}{l} > > {\rm{ A }} = {\rm{ }}\left( {4.5{\rm{ 3}}{\rm{.1 19}}{\rm{.249; 1}}{\rm{.6 1}}{\rm{.1 6}}{\rm{.843}}} \right);\\ > > {\rm{ U}} = {\rm{rref}}\left( {\rm{A}} \right)\end{aligned}\)

\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}&{19.249}\\{1.6}&{1.1}&{6.843}\end{aligned}} \right) \sim \left( {\begin{aligned}{*{20}{c}}1&0&{3.939999622}\\0&1&{0.4900005490}\end{aligned}} \right)\)

Therefore, the solution is\({\bf{x}} = \left( {\begin{aligned}{*{20}{c}}{3.94}\\{0.49}\end{aligned}} \right)\).

The exact solutions of the system of equations (3) are \({x_1} = 3.94\) and \({x_2} = 0.49\).

03

Obtain the augmented matrix

Consider the system of equations (4).

\(\begin{aligned}{c}4.5{x_1} + 3.1{x_2} = 19.25\\1.6{x_1} + 1.1{x_2} = 6.84\end{aligned}\)

\(A{\bf{x}} = b\)can be represented as shown below:

\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}\\{1.6}&{1.1}\end{aligned}} \right)\left( {\begin{aligned}{*{20}{c}}{{x_1}}\\{{x_2}}\end{aligned}} \right) = \left( {\begin{aligned}{*{20}{c}}{19.25}\\{6.84}\end{aligned}} \right)\)

Write theaugmentedmatrix \(\left( {\begin{aligned}{*{20}{c}}A&{\bf{b}}\end{aligned}} \right)\) as shown below:

\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}&{19.25}\\{1.6}&{1.1}&{6.84}\end{aligned}} \right)\)

04

Convert the augmented matrix into the row-reduced echelon form

Consider theaugmentedmatrix\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}&{19.25}\\{1.6}&{1.1}&{6.84}\end{aligned}} \right)\).

Use the code in MATLAB to obtain the row-reducedechelonform.

\(\begin{aligned}{l} > > {\rm{ A }} = {\rm{ }}\left( {4.5{\rm{ 3}}{\rm{.1 19}}{\rm{.25; 1}}{\rm{.6 1}}{\rm{.1 6}}{\rm{.84}}} \right);\\ > > {\rm{ U}} = {\rm{rref}}\left( {\rm{A}} \right)\end{aligned}\)

\(\left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}&{19.249}\\{1.6}&{1.1}&{6.843}\end{aligned}} \right) \sim \left( {\begin{aligned}{*{20}{c}}1&0&{2.899999690}\\0&1&{2.000000450}\end{aligned}} \right)\)

Therefore, the solution is\({\bf{x}} = \left( {\begin{aligned}{*{20}{c}}{2.90}\\{2.00}\end{aligned}} \right)\).

The exact solutions of the system of equations (4) are \({x_1} = 2.90\) and \({x_2} = 2.00\).

05

(b) Step 5: Calculate the relative errors

The exact value of\({x_1}\)in (3) is 3.94, and in (4), it is 2.90.

The relativeerrorin\({x_1}\)is

\(\begin{aligned}{c}\frac{{3.94 - 2.90}}{{3.94}} = \frac{{1.04}}{{3.94}}\\ \approx 0.2639.\end{aligned}\)

In percentage, it is\(26\% \).

The percentage error in\({x_1} = 2.90\)when using the solution of (4) as an approximation for the solution of (3) is\(26\% \).

The exact value of\({x_1}\)in (3) is 3.94, and in (4), it is 2.90.

So, the relativeerrorin\({x_2}\)is

\(\begin{aligned}{c}\frac{{0.49 - 2.00}}{{0.49}} = \frac{{ - 1.51}}{{0.49}}\\ \approx - 3.0816.\end{aligned}\)

In percentage, it is\(308\% \).

The percentage error in \({x_2} = 2.00\) when using the solution of (4) as an approximation for the solution of (3) is \(308\% \).

06

(c) Step 6: Use the condition number of the coefficient matrix

Consider the coefficient matrix\(A = \left( {\begin{aligned}{*{20}{c}}{4.5}&{3.1}\\{1.6}&{1.1}\end{aligned}} \right)\).

Obtain the condition number of the coefficient matrix by using the MATLAB command shown below:

\(\begin{aligned}{l} > > {\rm{ A }} = {\rm{ }}\left( {4.5{\rm{ 3}}{\rm{.1 19}}{\rm{.249; 1}}{\rm{.6 1}}{\rm{.1 6}}{\rm{.843}}} \right);\\ > > {\rm{ C}} = {\rm{cond}}\left( {\rm{A}} \right)\end{aligned}\)

It gives the output 3362.999.

Thus, the condition number of the coefficient matrix is 3363.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Suppose the system below is consistent for all possible values of \(f\) and \(g\). What can you say about the coefficients \(c\) and \(d\)? Justify your answer.

27. \(\begin{array}{l}{x_1} + 3{x_2} = f\\c{x_1} + d{x_2} = g\end{array}\)

Consider a dynamical system xโ†’(t+1)=Axโ†’(t) with two components. The accompanying sketch shows the initial state vector xโ†’0and two eigen vectors ฯ…1โ†’โ€Šโ€Šandโ€Šโ€Šฯ…2โ†’ of A (with eigen values ฮป1โ†’andฮป2โ†’ respectively). For the given values of ฮป1โ†’andฮป2โ†’, draw a rough trajectory. Consider the future and the past of the system.

ฮป1โ†’=1,ฮป2โ†’=0.9

In Exercises 32, find the elementary row operation that transforms the first matrix into the second, and then find the reverse row operation that transforms the second matrix into the first.

32. \(\left[ {\begin{array}{*{20}{c}}1&2&{ - 5}&0\\0&1&{ - 3}&{ - 2}\\0&{ - 3}&9&5\end{array}} \right]\), \(\left[ {\begin{array}{*{20}{c}}1&2&{ - 5}&0\\0&1&{ - 3}&{ - 2}\\0&0&0&{ - 1}\end{array}} \right]\)

Find the general solutions of the systems whose augmented matrices are given

11. \(\left[ {\begin{array}{*{20}{c}}3&{ - 4}&2&0\\{ - 9}&{12}&{ - 6}&0\\{ - 6}&8&{ - 4}&0\end{array}} \right]\).

Consider the problem of determining whether the following system of equations is consistent:

\(\begin{aligned}{c}{\bf{4}}{x_1} - {\bf{2}}{x_2} + {\bf{7}}{x_3} = - {\bf{5}}\\{\bf{8}}{x_1} - {\bf{3}}{x_2} + {\bf{10}}{x_3} = - {\bf{3}}\end{aligned}\)

  1. Define appropriate vectors, and restate the problem in terms of linear combinations. Then solve that problem.
  1. Define an appropriate matrix, and restate the problem using the phrase โ€œcolumns of A.โ€
  1. Define an appropriate linear transformation T using the matrix in (b), and restate the problem in terms of T.
See all solutions

Recommended explanations on Math Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free