markdown
Determinants and invertibility - Basic Exercisesmd c0bc620
exercise/math/linear-algebra/determinants-and-invertibility.exercise.n.md

Determinants行列式ぎょうれつしき and invertibility - Basic Exercises

date2026-06-30document_iddoc_7b1f80887c5c853fb0a761c560be6430description行列式の計算規則・余因子展開・可逆性判定を、体積倍率と操作ごとの変化に注目して確認する基本演習である。prerequisites行列式 / 置換による行列式の定義 / 行列式の計算規則 / 余因子展開と可逆性の判定 / 逆行列の基本type問題演習content_typeexercisestatusactiverelateddata/lecture/math/linear-algebra/determinants.lecture.n.md / data/lecture/math/linear-algebra/determinants-by-permutations.lecture.n.md / data/lecture/math/linear-algebra/determinant-computation-rules.lecture.n.md / data/lecture/math/linear-algebra/cofactor-expansion-and-invertibility.lecture.n.md / data/lecture/math/linear-algebra/inverse-matrix-basics.lecture.n.md
mathlinear-algebraexercisedeterminantinvertible
data/lecture/math/linear-algebra/determinant-computation-rules.lecture.n.md data/lecture/math/linear-algebra/determinants-by-permutations.lecture.n.md data/lecture/math/linear-algebra/cofactor-expansion-and-invertibility.lecture.n.md data/lecture/math/linear-algebra/determinants.lecture.n.md

1Exercise plan

The determinant行列式ぎょうれつしき tells how much a square matrix正方行列せいほうぎょうれつ scales volume and whether orientation is preserved or reversed. In computations, track which row or column operations change the determinant and which leave it unchanged.


Use determinant computations to answer structural questions, not only to get a number. A zero determinant means the columns are dependent, the matrix is not invertible, and the associated square linear map collapses volume to zero. A nonzero determinant means invertibility and gives permission to use inverse-matrix arguments.

Track how each operation affects the determinant. Swapping two rows or columns changes the sign, scaling one row or column scales the determinant, and adding a multiple of one row or column to another leaves it unchanged. These rules are often safer than expanding directly, but the operation and its effect must be recorded.

2Problem 1

Find the determinant of

A=(2153)

and state its geometric meaning.

2.1Answer example

detA=2·3-1·5=1.

Thus the linear transformation線型変換せんけいへんかん preserves area by factor 1 and does not reverse orientation.

2.2Explanation

For a 2×2 matrix, the determinant is the signed area of the parallelogram made by the two column vectorsれつベクトル.


3Problem 2

Suppose detA=6. How does the determinant change after each operation?

  1. R1R2
  2. R34R3
  3. R2R2-5R1

3.1Answer example

  1. -6
  2. 24
  3. 6

3.2Explanation

Swapping rows reverses sign. Multiplying a row by 4 multiplies the determinant by 4. Adding a multiple of one row to another does not change the determinant.


4Problem 3

Compute

B=(102304-156)

by cofactor expansion余因子展開よいんしてんかい along the second column.

4.1Answer example

The second column is 0,0,5, so

detB=5(-1)3+2det(1234)=-5(4-6)=10.

4.2Explanation

Choose a row or column with many zeros to reduce computation, and do not omit the cofactor sign (-1)i+j.


5Problem 4

Is

C=(123014000)

invertible可逆かぎゃく? Give a reason.

5.1Answer example

No. Since it is triangular,

detC=1·1·0=0.

Therefore its inverse matrix逆行列ぎゃくぎょうれつ does not exist.

5.2Explanation

For square matrices, nonzero determinant is equivalent to invertibility. A zero determinant means volume collapses to 0 and input information cannot be recovered uniquely.


6Problem 5

Decide whether this statement is true:

"If a square matrix正方行列せいほうぎょうれつ has two identical rows, then detA=0."

6.1Answer example

True.

6.2Explanation

Two identical rows are linearly dependent一次従属いちじじゅうぞく. Also, swapping them leaves the matrix unchanged but changes the determinant sign, so detA=-detA and hence detA=0.


7Supplementary problems: determinant computation and invertibility

7.1Problem 6

Compute det(4123).

7.2Answer example

4·3-1·2=10.

7.3Problem 7

What happens to the determinant when two rows are swapped?

7.4Answer example

The sign is reversed.

7.5Problem 8

What happens to the determinant when two columns are swapped?

7.6Answer example

The sign is reversed.

7.7Problem 9

Construct a 2×2 matrix with determinant 0.

7.8Answer example

(1224) has determinant 0 because the second row is twice the first.

7.9Problem 10

Compute a 3×3 determinant with many zeros in the second column by cofactor expansion.

7.10Answer example

For

A=(102351004),

expanding along the second column gives

detA=5(-1)2+2det(1204)=20.

7.11Problem 11

Write the cofactor sign pattern for 3×3.

7.12Answer example

(+-+-+-+-+).

7.13Problem 12

Explain why A-1 does not exist if detA=0.

7.14Answer example

detA=0 means the transformation collapses volume to 0. Information is lost, so inputs cannot be recovered uniquely.


7.15Problem 13

Let column vectors a,b,c satisfy det(a,b,c)=5. Using multilinearity and alternation, find:

  1. det(a+2b,b,c)
  2. det(2a,c,b)
  3. det(a,b,a+c)

7.16Answer example

det(a+2b,b,c)=det(a,b,c)+2det(b,b,c)=5.
det(2a,c,b)=2det(a,c,b)=-2det(a,b,c)=-10.
det(a,b,a+c)=det(a,b,a)+det(a,b,c)=5.

7.17Explanation

The terms with two equal columns are 0, and swapping columns reverses sign.


7.18Problem 14

For

A=(1237),B=(7-2-31),

confirm that B=A-1 by computing AB and BA.

7.19Answer example

AB=I2,BA=I2.

Therefore B=A-1.

7.20Problem 15

For the same A and b=(5,17)T, solve Ax=b by x=A-1b and explain uniqueness.

7.21Answer example

x=A-1b=(7-2-31)(517)=(12).

If two solutions existed, their difference would satisfy A(x1-x2)=0. Multiplying by A-1 gives x1-x2=0, so the solution is unique.

7.22Problem 16

For

A=(10),B=(10),

compute AB and BA and explain why a one-sided identity is not enough for an inverse matrix.

7.23Answer example

AB=I1,

but

BA=(1000)I2.

Thus B is not a two-sided inverse of A.

7.24Problem 17

Suppose detA=6. How does the determinant change after:

  1. C1C3
  2. C23C2
  3. C3C3-5C1

7.25Answer example

  1. -6
  2. 18
  3. 6

7.26Problem 18

Find the determinant of

A=(021130241)

while tracking row-operation changes.

7.27Answer example

Swap R1R2, reversing sign:

(021130241)(130021241).

The additions R3R3-2R1 and R3R3+R2 do not change determinant, giving

(130021002).

Then R212R2 halves the determinant and gives triangular determinant 2, so before that scaling it was 4. Undoing the initial swap gives

detA=-4.

9Proof exercise: column addition does not change determinant

9.1Problem

Using column-linearity of the determinant and the fact that the determinant is 0 when two columns are equal, prove that CiCi+λCj does not change the determinant.

9.2Answer

By linearity in the i-th column,

D(,Ci+λCj,,Cj,)=D(,Ci,,Cj,)+λD(,Cj,,Cj,).

The second term is 0 because two columns are equal. Hence the determinant is unchanged.

9.3Explanation

This proof shows how determinant computation rules follow from multilinearity多重線型性たじゅうせんけいせい.

raw .n.md をコピー
loc をコピー (filepath:line ~ line)
copy share link
copy encoded share link
path をコピー
copy share link
copy encoded share link
copy share link
copy encoded share link
タブを全て閉じる