Adv Eng Math Lecture Notes 1 v2
Adv Eng Math Lecture Notes 1 v2
kr)
1. Perform Matrix Operations: Execute matrix addition, multiplication, and transposition, and under-
stand the significance of these operations in civil engineering contexts (e.g. combining stiffness matrices,
2. Recognize and Use Special Matrices: Identify common matrix types (diagonal, symmetric, orthogonal,
etc.) and know their properties and relevance in structural analysis, finite element methods, and other
applications.
3. Define and Manipulate Vectors: Understand the concepts of vector addition, scalar multiplication,
and the geometric interpretation of vectors in Rn . Be able to represent forces, displacements, or other
4. Solve Systems of Linear Equations: Set up engineering problems in the form Ax = b, and apply
row-reduction or other methods (e.g. matrix inverses, LU decomposition) to find unknowns such as forces,
flows, or displacements.
1
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
EA
− EA
L 0 0 L 0 0
pi ui
12EI 6EI
qi 0 L3 L2 0 − 12EI
L3
6EI
L 2 vi
6EI 4EI
Mi
0 L2 L 0 − 6EI
L2
2EI
L θi
= .
EA EA
pj − 0 0 0 0 uj
L L
qj 6EI vj
− 12EI − 6EI 12EI
0
L3 L2 0 L3 − L2
Mj
6EI 2EI
θj
0 L2 L 0 − 6EI
L2
4EI
L
| {z }
Kelement
h i
−(K12 + K23 ) h2 + K23 h3 = D2 − K12 H,
| {z } | {z }
coefficient of h2 coefficient of h3
K23 h2 − K23 h3 = D3 .
| {z } | {z }
coefficient of h2 coefficient of h3
−(K12 + K23 ) K23 h2 D2 − K12 H
= .
K23 −K23 h3 D3
2
Chapter 7
– Matrices are denoted by capital boldface letters (or by specifying the general entry in brackets).
– Each entry is typically denoted by a double subscript, e.g., aij where i is the row number and j is the
column number.
3
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
a11 a12 ··· a1n
a
21 a22 ··· a2n
Am×n =
.
.
.. .. .. ..
. . .
am1 am2 ··· amn
7.1.2 Vectors
a11 + b11 a12 + b12 ··· a1n + b1n
a +b
21 21 a22 + b22 ··· a2n + b2n
A+B = .
.
.. .. .. ..
. . .
am1 + bm1 am2 + bm2 ··· amn + bmn
4
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
ka11 ka12 ··· ka1n
ka
21 ka22 ··· ka2n
kA =
.
.
.. .. .. ..
. . .
kam1 kam2 ··· kamn
Two matrices A and B are equal if they have the same dimensions and all corresponding entries are
equal.
7.2.1 Definition
Definition: Matrix Multiplication
with entries
n
X
cij = aik bkj .
k=1
The entry cjk is obtained by multiplying each entry in the jth row of A by the corresponding entry in the
kth column of B and summing the products. This is called multiplication of rows into columns.
5
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
a11 a12 a13 c11 c12
b11 b12
a a22 a23 c c22
21 21
A=
,
B=
b21 ,
b22 C=
a a32 a33 c c32
31 31
b31 b32
a41 a42 a43 c41 c42
1 3 6 1
2 · 3 6 1 =
6 12 2
4 12 24 4
In general, AB ̸= BA:
1 1 −1 1 0 0
· =
100 100 1 −1 0 0
But:
−1 1 1 1 99 99
· =
1 −1 100 100 −99 −99
6
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
7.2.2 Properties
7.2.3 Transposition
Definition: Matrix Transposition
• The transpose of a matrix A, denoted by AT , is obtained by interchanging the rows and columns:
a11 a12 a11 a21
A=
=⇒ AT =
.
a21 a22 a12 a22
• Properties of Transposition:
– (AT )T = A.
– (cA)T = cAT .
– (A + B)T = AT + B T .
– (AB)T = B T AT .
• Square Matrix: A matrix with the same number of rows and columns.
a11 a12 ··· a1n
a
21 a22 ··· a2n
A=
.
.
.. .. .. ..
. . .
an1 an2 ··· ann
7
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
• Main Diagonal: The diagonal containing the entries a11 , a22 , . . . , ann .
a11 a12 a13
A=
a12 a22 .
a23
a13 a23 a33
0 a12 a13
A=
−a12 0 .
a23
−a13 −a23 0
• Triangular Matrices:
– Upper Triangular Matrix: All entries below the main diagonal are zero.
a11 a12 a13
A=
0 a22 .
a23
0 0 a33
– Lower Triangular Matrix: All entries above the main diagonal are zero.
a11 0 0
A=
a21 a22 0 .
a31 a32 a33
8
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
• Diagonal Matrix: A square matrix in which all off-diagonal entries are zero.
a11 0 0
A=
0 a22 0 .
0 0 a33
λ 0 0
A=
0 λ 0.
0 0 λ
• Identity Matrix (Unit Matrix): A scalar matrix with diagonal entries all equal to 1.
1 0 0
I=
0 1 .
0
0 0 1
Ax = b,
where A is the coefficient matrix, x the solution vector, and b the constant vector.
9
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
a11 x1 + a12 x2 + · · · + a1n xn = b1 ,
a21 x1 + a22 x2 + · · · + a2n xn = b2 ,
..
.
am1 x1 + am2 x2 + · · · + amn xn = bm .
a11 a12 ··· a1n x1 b1
a
21 a22 ··· a2n
x
2
b
2
A=
.
,
. ,
x=
. .
b=
.. .. .. .. .. ..
. . .
am1 am2 ··· amn xn bm
a11 a12 ··· a1n b1
a
21 a22 ··· a2n b2
Augmented matrix: [A | b] =
.
.
.. .. .. .. ..
. . . .
am1 am2 ··· amn bm
2x + 3y = 5,
4x − y = 7.
2 3 x 5
= .
4 −1 y 7
10
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
1 2 −1 3
.
2 1 1 1
3 4 2 7
1. Forward Elimination: Eliminate variables to obtain an upper triangular (row echelon) form.
Step 1: Eliminate x from the second and third equations using the first row.
0 −3 3 −5
0 −2 5 −2
1 2 −1 3
−3 .
−5
0 3
0 −2 5 −2
11
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
−2 2
Factor = = .
−3 3
2
Replace Row 3 with Row 3 − 3 × Row 2:
Simplifying:
10
0 −2 + 2 5−2 −2 + 3
0 0 3 − 63 + 10
3 = 4
3
2. Back Substitution: Solve for the variables starting from the last equation.
4
Step 2: Substitute z = 9 into the second row:
4
−3y + 3z = −5 =⇒ −3y + 3 = −5.
9
Simplify:
4 4 15 4 19
−3y + = −5 =⇒ −3y = −5 − =− − =− ,
3 3 3 3 3
19
y= .
9
12
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
19 4
Step 3: Substitute y = 9 and z = 9 into the first row:
19 4
x + 2y − z = 3 =⇒ x+2 − = 3.
9 9
Simplify:
38 4 34
x+ − =3 =⇒ x+ = 3,
9 9 9
34 27 34 7
x=3− = − =− .
9 9 9 9
- Addition of a constant multiple of one equation - Addition of a constant multiple of one row to an-
stant
Note: These operations apply to rows (not columns) and preserve the solution set.
row operations.
• Two linear systems are row-equivalent if one can be obtained from the other by a sequence of elementary
row operations.
13
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
2x + 3y = 8.
Concretely,
2x + 3y − 2(x + y) = 8 − 2 × 3,
which simplifies to
2x + 3y − 2x − 2y = 8 − 6 =⇒ y = 2.
y = 2.
Since S2 is obtained from S1 by an elementary row operation, the two systems are row-equivalent and share
• No solution (if the augmented matrix has a row that leads to an inconsistency, e.g., 0 = c, with c ̸= 0).
14
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
7.3.5 Examples
15
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
Ex.3 Solve the following linear system of three equations in four unknowns whose augmented matrix is:
3.0 2.0 2.0 −5.0 8.0
.
0.6 1.5 1.5 5.4 2.7
1.2 0.3 0.3 2.4 2.1
3.0 x1 + 2.0 x2 + 2.0 x3 − 5.0 x4 = 8.0,
0.6 x1 + 1.5 x2 + 1.5 x3 + 5.4 x4 = 2.7,
1.2 x1 + 0.3 x2 + 0.3 x3 + 2.4 x4 = 2.1.
Step 1 Elimination of x1 :
0.6
• Multiply the first equation by − = −0.2 and add to the second equation to eliminate x1 there.
3.0
1.2
• Multiply the first equation by − = −0.4 and add to the third equation to eliminate x1 there.
3.0
After these operations, the new augmented matrix might look like this (schematically):
3.0 2.0 2.0 −5.0 8.0
.
0 1.1 1.1 4.4 1.1
0 0.2 0.2 3.4 1.9
Step 2 Elimination of x2 :
0.2
• Suppose the factor is − .
1.1
16
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
which indicates one entire row reduces to zeros on the left (and also zero on the right), so there is no contradiction.
Step 3 Substitution:
From the second equation (in its simplified form), you might find
x2 = 1 − x3 + 4 x4 .
x1 = 2 − x4 (for example).
Because x3 and x4 do not get pinned down, they are free variables, and we thus have infinitely many solutions.
Concretely,
x1 = 2 − x4 ,
x 2 = 1 − x 3 + 4 x 4 ,
x3 = x3 ,
x 4 = x 4 ,
Conclusion: Since two variables remain free, the system has infinitely many solutions.
17
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
In augmented form:
3 2 1 3
.
2 1 1 0
6 2 4 6
Step 1 Elimination of x1 :
2
Row 2 ← Row 2 − Row 1, Row 3 ← Row 3 − 2 Row 1.
3
Step 2 Elimination of x2 : Use the new Row 2 to eliminate x2 from Row 3. If at some point you obtain an
0 = 12,
this is a contradiction.
At the end of the Gauss elimination process, the coefficient matrix (and, if applicable, the augmented matrix) is
transformed into a row echelon form. In this form, each leading (nonzero) entry in a row is to the right of the
leading entry in the row above it, and any all-zero rows (if present) appear at the bottom.
a11 a12 ··· a1r ··· a1n b1
0
a22 ··· a2r ··· a2n
b
2
. .. .. .. .. .. .
.. . . . . . ..
0
0 ··· arr ··· arn
b
r
. .. .. .. .
.. . . . ..
0 0 ··· 0 ··· 0 bm
| {z } | {z }
Row echelon form of A Constants
If A is the coefficient matrix of an m × n system, its rank is the number of nonzero rows in this echelon form
(denoted r). Let b be the vector of constants in the augmented matrix [A | b]. Then:
18
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
• Exactly one solution: If r = n and the extra rows (if any) in the augmented matrix have zero entries on
the left and also zero on the right (i.e., br+1 , . . . , bm = 0), the system has a unique solution.
• Infinitely many solutions: If r < n and the extra rows (if any) still have zero entries on the left and zero
on the right, then the system has infinitely many solutions (due to the presence of free variables).
• No solution: If r < m but one of the corresponding constants br+1 , . . . , bm is not zero, then the system is
These three cases cover all possible outcomes once the system is in row echelon form.
c1 v1 + c2 v2 + · · · + cm vm = 0
has only the trivial solution c1 = c2 = · · · = cm = 0. Otherwise, the vectors are linearly dependent.
Geometric Interpretation
In R2 , two vectors are linearly independent if they are not collinear. In R3 , three vectors are linearly
1 3
v1 =
,
v2 =
.
2 4
2c1 + 4c2 = 0.
19
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
p vectors with n components each are linearly independent if the matrix with these vectors as row vectors
has rank p, but they are linearly dependent if that rank is less than p.
A vector space V over R is a set with two operations: vector addition and scalar multiplication, satisfying:
• Distributive properties.
20
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
• Span: The set of all linear combinations of given vectors with the same number of components.-
• Subspace: A nonempty subset that forms itself a vector space with respect to the two algebraic
span{v1 , . . . , vk } = c1 v1 + · · · + ck vk c1 , . . . , ck ∈ R .
Theorem 1 Let {v1 , . . . , vk } be any finite set of vectors in a vector space V . Then span{v1 , . . . , vk } is a subspace
of V .
w1 + w2 = (a1 + b1 ) v1 + · · · + (ak + bk ) vk ,
• Closed under scalar multiplication: Let w ∈ W and let α be any scalar. Then w = c1 v1 + · · · + ck vk
α w = α c1 v1 + · · · + ck vk = (αc1 ) v1 + · · · + (αck ) vk ,
21
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
which is again in W .
The vector space Rn consisting of all vectors with n components ( n real numbers ) has dimension n.
The row space and the column space of a matrix A have the same dimension, equal to rank A.
• Nullity of A: The dimension of the null space rank A + nullity A = Number of columns of A
Important Properties
• If rank(A) < n, the system Ax = b has either no solution or infinitely many solutions.
• Existence: A linear system of m equations in n unknowns is consistent, that is, has solutions, if and
only if the coefficient matrix and the augmented matrix have the same rank.
• Uniqueness: The linear system has precisely one solution if and only if this common rank r of the
• Infinitely Many Solutions: If this common rank r is less than n, the system has infinitely many
solutions. All of these solutions are obtained by determining r suitable unknowns (whose submatrix
of coefficients must have rank r ) in terms of the remaining n–r unknowns, to which arbitrary values
can be assigned.
• Gauss Elimination: If solutions exist, they can all be obtained by the Gauss elimination. (This
22
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
A fundamental question when dealing with a linear system Ax = b is whether solutions exist, and if they
do, whether they are unique. This is determined by examining the ranks of the coefficient matrix A and the
• If rank(A) = rank([A | b]) < n, the system has infinitely many solutions.
For systems of two or three equations, geometric interpretations help illustrate the existence and uniqueness of
solutions:
23
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
• A homogeneous linear system of m equations in n unknowns always has the trivial solution.
• If rank A = r < n, these solutions, together with x = 0, form a vector space of dimension n–r,
• Linear combination of two solution vectors of the homogeneous linear system is a solution vector.
A homogeneous linear system with fewer equations than unknowns always has nontrivial solutions.
Ax = 0.
• Nontrivial solutions (solutions other than the trivial one) exist if and only if:
rank(A) < n.
• The set of all solutions to a homogeneous system forms a vector space known as the null space of A.
Performing row operations, if the rank is less than 3, nontrivial solutions exist.
24
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
If a nonhomogeneous linear system is consistent, then all of its solutions are obtained as x = x0 + xh
where x0 is any solution of the nonhomogeneous linear system and xh runs through all the solutions of
Ax = b, b ̸= 0.
• If the rank is less than the number of unknowns, there are infinitely many solutions.
2x + 4y = 8.
Here, rank(A) = rank([A | b]) = 1 but n = 2, so the system has infinitely many solutions.
25
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
is defined as:
This formula geometrically represents the area of a parallelogram spanned by the row (or column) vectors of the
matrix.
3 2
Example: For A =
,
5 4
det(A) = 3 × 4 − 2 × 5 = 12 − 10 = 2.
For a 3 × 3 matrix
a11 a12 a13
A=
a21 a22 ,
a23
a31 a32 a33
a22 a23 a21 a23 a21 a22
det(A) = a11 det − a12 det + a13 det .
a32 a33 a31 a33 a31 a32
This method, known as cofactor expansion, can also be applied along any row or column.
Example: Let
1 2 3
A=
0 4 5.
1 0 6
26
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
Then:
4 5 0 5 0 4
det(A) = 1 det − 2 det + 3 det
0 6 1 6 1 0
= 24 + 10 − 12 = 22.
Given a system of linear equations Ax = b where A is an n × n matrix with det(A) ̸= 0, the solution for the
where Ak is the matrix obtained by replacing the kth column of A with the vector b.
4x − y = 7.
Here,
2 3 5
A=
,
b=
.
4 −1 7
Compute determinants:
5 3
A1 =
,
det(A1 ) = 5(−1) − 3(7) = −5 − 21 = −26.
7 −1
Thus,
−26 13
x= = .
−14 7
Similarly, for y:
2 5
A2 =
,
det(A2 ) = 2(7) − 5(4) = 14 − 20 = −6.
4 7
27
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
−6 3
y= = .
−14 7
13 3
Solution: (x, y) = 7 , 7 .
1 1
1 6
A=
2 −1 1 and b =
3 .
1 2 −1 3
2 1
= (2)(−1) − (1)(1) = −2 − 1 = −3,
1 −1
2 −1
= (2)(2) − (−1)(1) = 4 + 1 = 5.
1 2
Thus:
Step 2: Compute det A1 , det A2 , and det A3 Replace each column of A with b:
28
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
6 1 1 1 6 1 1 1 6
A1 =
3 −1 ,
1 A2 =
2 3 1, A3 =
2 −1 .
3
3 2 −1 1 3 −1 1 2 3
Compute det A1 :
−1 1 3 1 3 −1
det(A1 ) = 6 −1 +1 .
2 −1 3 −1 3 2
−1 1 3 1 3 −1
= −1, = (3)(−1) − (1)(3) = −6, = (3)(2) − (−1)(3) = 9.
2 −1 3 −1 3 2
So:
Compute det A2 :
3 1 2 1 2 3
det(A2 ) = 1 −6 +1 .
3 −1 1 −1 1 3
Minors:
3 1 2 1 2 3
= −6, = −3, = 3.
3 −1 1 −1 1 3
Thus:
Compute det A3 :
−1 3 2 3 2 −1
det(A3 ) = 1 −1 +6 .
2 3 1 3 1 2
Minors:
−1 3 2 3 2 −1
= −9, = 3, = 5.
2 3 1 3 1 2
Hence:
29
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
Final Answer:
x = 97 , y= 15
7 , z= 18
7 .
“‘latex
For a square matrix A of order n, the determinant is a scalar value associated with the matrix and is denoted
by det(A) or |A|. The determinant provides important information about the matrix, such as whether it is
invertible and the volume scaling factor of the linear transformation represented by A.
• Determinant of Order n
• If n = 1 then D = a11 .
• If n ≥ 2 then
or
30
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
Second-Order Determinant
For a 2 × 2 matrix:
a11 a12
A=
,
det(A) = a11 a22 − a12 a21 .
a21 a22
Solution:
3 4
det = (3)(5) − (4)(2) = 15 − 8 = 7.
2 5
Third-Order Determinant
For a 3 × 3 matrix:
a11 a12 a13
A=
a21 a22 ,
a23
a31 a32 a33
its determinant is given by the cofactor expansion along the first row:
31
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
Solution:
−1 4 0 4 0 −1
det(A) = 1 −2 +3 .
0 2 5 2 5 0
0 4
= (0)(2) − (4)(5) = −20,
5 2
0 −1
= (0)(0) − (−1)(5) = 5.
5 0
Substitute back:
32
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
• Swapping two rows (or columns) changes the sign of the determinant. If matrix B is
det(B) = − det(A).
det(B) = c · det(A).
• Adding a multiple of one row to another does not change the determinant. If B is obtained
from A by replacing a row with itself plus k times another row, then:
det(B) = det(A).
• det(A) = det(AT ). The determinant remains the same when the matrix is transposed:
a b a c
det = ad − bc = det .
c d b d
0 0 a b
det
=0
det
= 0.
c d 0 0
a b c d
det = ad − bc ⇒ det = −(ad − bc).
c d a b
33
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
2a 2b a b
det = 2 · det = 2(ad − bc).
c d c d
a b
det = ad − bc.
c + ka d + kb
• Addition of a multiple of a column to another column does not alter the value of the determinant.
• The determinant of any square submatrix with more than r rows, contained in A has a value equal
to zero.
34
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
a11 x1 + a12 x2 + · · · + a1n xn = b1 ,
a21 x1 + a22 x2 + · · · + a2n xn = b2 ,
..
.
an1 x1 + an2 x2 + · · · + ann xn = bn
has a nonzero coefficient determinant D = det(A), the system has precisely one solution. This solution
(Cramer’s rule) where Dk is the determinant obtained from D by replacing in A the kth column
(b) Hence if the system (6) is homogeneous and D ̸= 0, it has only the trivial solution x1 = 0, x2 =
Ax = b,
det(Ai )
xi = , i = 1, 2, . . . , n,
det(A)
35
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
1 1 1 6
A=
2 −1 ,
1 3 .
b=
1 2 −1 3
det(A) = 7.
6 1 1 1 6 1 1 1 6
A1 =
3 −1 ,
1 A2 =
2 3 1, A3 =
2 −1 .
3
3 2 −1 1 3 −1 1 2 3
Final Answer:
x = 97 , y= 15
7 , z= 18
7 .
36
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
AA−1 = A−1 A = I,
• The inverse of a matrix A exists if and only if rank(A) = n, which is equivalent to det(A) ̸= 0.
• A is nonsingular if rank(A) = n.
To find A−1 , we use the augmented matrix à = [A | I] and apply Gauss–Jordan elimination to obtain [I | K],
where K = A−1 .
à = [A | I] −−−−−−−−−−−→ [I | A−1 ].
Gauss elimination
37
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
C11 C12 ··· C1n
1
C
21 C22 ··· C2n
A−1
= ,
...
det(A) ..
.
..
.
..
.
Cn1 Cn2 ··· Cnn
a11 a12 1 a22 −a12
A= , A−1 = .
det(A)
a21 a22 −a21 a11
−1 1 3 1 3 −1
C11 = = −7, C12 = − = −13, C13 = = 8,
3 4 1 4 1 3
1 2 −1 2 −1 1
C21 = − = 2, C22 = = −2, C23 = − = 2,
3 4 1 4 1 3
1 2 −1 2 −1 1
C31 = = 3, C32 = − = 7, C33 = = −2.
−1 1 3 1 3 −1
38
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
If A = [ajk ] is diagonal with ajj ̸= 0 for all j, then A−1 is also diagonal with entries:
1/a11 0 ··· 0
0 1/a22 ··· 0
A−1
=
.
.
.. .. .. ..
. . .
0 0 ··· 1/ann
• (AC)−1 = C −1 A−1 .
• (A−1 )−1 = A.
39
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
Example: Non-Commutativity
1 1 −1 1 0 0 −1 1 1 1 0 0
= but ̸= .
2 2 1 −1 0 0 1 −1 2 2 0 0
40
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
tions
A real vector space is a set V equipped with two operations: vector addition and scalar multiplication,
• Vector Addition: a + b
– Commutativity: a + b = b + a
– Associativity: (u + v) + w = u + (v + w)
– Zero Vector: a + 0 = a
• Scalar Multiplication: ka
– Identity: 1a = a
41
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
If a and b are vectors in Rn , regarded as column vectors, we can form the product aT b. This is a 1 × 1
matrix, which we can identify with its single entry, that is, with a number.
This product is called the inner product or dot product of a and b. Other notations for it are (a, b)
and a · b. Thus,
b1
X n
.
aT b = (a, b) = a · b = a1 ··· an
.. = ai bi = a1 b1 + · · · + an bn .
i=1
bn
Properties
An inner product space is a vector space V with an inner product ⟨a, b⟩ satisfying:
For vectors a and b, the inner product is related to the angle θ between them by:
Related Concepts:
• Norm: ∥a∥ =
p
⟨a, a⟩.
42
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
n
!p1
X
∥a∥p = |ai |p , p ≥ 1.
i=1
Common cases:
A linear transformation (or linear mapping) T from a vector space V into a vector space W is a rule that
assigns to each vector v ∈ V a unique vector T (v) ∈ W , satisfying the following two properties for all u, v ∈ V
and scalars c:
T (u + v) = T (u) + T (v).
T (cv) = cT (v).
43
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
Key Idea
A transformation is linear if and only if it preserves vector addition and scalar multiplication.
1 2
A=
.
0 1
1 2 x1 x1 + 2x2
T (x) =
=
.
0 1 x2 x2
Any linear transformation T : Rn → Rm can be represented by an m × n matrix A such that T (x) = Ax.
T (x) = Ax ∀x ∈ Rn .
The columns of A are given by T (e1 ), T (e2 ), . . . , T (en ) where ei are the standard basis vectors of Rn .
Example 2: Reflection Transformation Let T : R2 → R2 be the reflection about the x-axis. The standard
matrix is:
1 0
A=
.
0 −1
44
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
• T (0) = 0.
• T (−v) = −T (v).
A linear transformation T is invertible if and only if its standard matrix A is invertible. In that case,
T −1 (x) = A−1 x.
2 1
A=
.
1 1
Then,
1 1 −1 1 −1
A−1 = = .
1
−1 2 −1 2
For x = (x1 , x2 )T ,
1 −1 x1
T −1 (x) = A−1 x =
.
−1 2 x2
45
Advanced Engineering Mathematics (Spring 2025)-SNU CEE Hyoseob Noh (hyoddubi1@snu.ac.kr)
7.10.5 Summary
Summary of Linear Transformations
• Matrix Operations:
• Vectors in Rn :
– Operations: addition, scalar multiplication, dot product, and (in R3 ) cross product
46
References
47