Skip to content

Homework 4 Update #8

Merged
merged 9 commits into from
Feb 25, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added suggested gauss elimination
rcc02007 committed Feb 21, 2017
commit 72ca990cf5c532001f3317577e52f1f54ab1a1b9
71 changes: 71 additions & 0 deletions linear_algebra/gauss_suggested.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# Linear Algebra Review
## (Gauss Elimination) Suggested problems
### No due date

1. Solve for x when Ax=b for the following problems:

a. $A=\left[ \begin{array}{cc}
1 & 3 \\
2 & 1 \end{array} \right]
b=
\left[\begin{array}{c}
1 \\
1\end{array}\right]$

a. $A=\left[ \begin{array}{cc}
1 & 1 \\
2 & 3 \end{array} \right]
b=
\left[\begin{array}{c}
3 \\
4\end{array}\right]$

a. $A=\left[ \begin{array}{cc}
1 & 1 \\
2 & -2 \end{array} \right]
b=
\left[\begin{array}{c}
4 \\
2\end{array}\right]$

b. $A=\left[ \begin{array}{ccc}
1 & 3 & 1 \\
-4 & -9 & 2 \\
0 & 3 & 6\end{array} \right]
b=
\left[\begin{array}{c}
0 \\
0 \\
0\end{array}\right]$

c. $A=\left[ \begin{array}{ccc}
1 & 3 & 1 \\
-4 & -9 & 2 \\
0 & 3 & 6\end{array} \right]
b=
\left[\begin{array}{c}
1 \\
-1 \\
-3\end{array}\right]$

d. $A=\left[ \begin{array}{ccc}
1 & 3 & -5 \\
1 & 4 & -8 \\
-3 & -7 & 9\end{array} \right]
b=
\left[\begin{array}{c}
1 \\
-1 \\
-3\end{array}\right]$

d. $A=\left[ \begin{array}{ccc}
1 & 2 & -1 \\
2 & 2 & 2 \\
1 & -1 & 2\end{array} \right]
b=
\left[\begin{array}{c}
2 \\
12 \\
5\end{array}\right]$

2. Calculate the determinant of A from 1a-g.