Types: N/A
Examples: N/A
Constructions: N/A
Generalizations: 17.4 Model of Airplane Descent Path to Landing

Properties: N/A
Sufficiencies: N/A
Questions: N/A

Solving GLSP for Airplane Descent Path

Recall 17.1 The General Linear-Systems Problem we found for our model of a Boeing 787's descent path to landing.

[1000140016000064000000010001800480000]A[a0a1a2a3]x=[40000000]b

Recall that we modeled the descent path with the cubic polynomial

p(x)=a0+a1x+a2x2+a3x3

Solve for the vector x.

\begin{proof}[Solution.]
To start, we need to transform matrix A into 17.2 Row Echelon Form by multiplying on the left by elementary matrices. Notice that rows 1 and 3 are nice looking from the standpoint of elimination, while rows 2 and 4 look like they require more work for elimination. Let's switch row 3 to row 2, row 4 to row 3, and switch row 2 to row 4 using a permutation matrix (combination of 9.10 Transposition Matrix).

[1000001000010100]E1[10001400160000064000000010001800480000]A[a0a1a2a3]x=[1000001000010100]E1[40000000]b[10000100018004800001400160000064000000]E1A[a0a1a2a3]x=[40000000]E1b

We now have a structure that will be much easier to transform into row echelon form. We can zero out the bottom left corner by multiplying on the left by a 9.8 Shear Matrix. Recall that we get c by taking the negative of what we are trying to cancel out and dividing by its pivot.

[1000010000101000]E2[1000010001800480000140016000064000000]E1A[a0a1a2a3]x=[1000010000101000]E2[40000000]E1b[1000010001800480000040016000064000000]E2E1A[a0a1a2a3]x=[400000040000]E2E1b

Now, we need to cancel out the values below the diagonal in column 2. Once again, we multiply by a shear matrix.

[1000010001100001]E3[1000010001800480000040016000064000000]E2E1A[a0a1a2a3]x=[1000010001100001]E3[400000040000]E2E1b[100001000010040001]E4[1000010000800480000040016000064000000]E3E2E1A[a0a1a2a3]x=[100001000010040001]E4[400000040000]E3E2E1b[10000100008004800000016000064000000]E4E3E2E1A[a0a1a2a3]x=[400000040000]E4E3E2E1b

Now, we need to eliminate the sub diagonal values in column 3. We see that we just need to eliminate 160000.

[100001000010002001]E5[10000100008004800000016000064000000]E4E3E2E1A[a0a1a2a3]x=[100001000010002001]E5[400000040000]E4E3E2E1b[100001000080048000000032000000]U[a0a1a2a3]x=[400000040000]y

We have successfully transformed our original modeling matrix A into row echelon form U. Using 12.2 Backwards Substitution, we produce the following values of x:

[a0a1a2a3]x=[4000000.750.00125]=[400000341800]

We can conclude that the descent path is modeled by the cubic polynomial

p(x)=400000.75x2+0.00125x3

\end{proof}