markdown
Vectors and linear combinations - Basic Exercisesmd 5e724cf
exercise/math/linear-algebra/vectors-and-linear-combinations.exercise.n.md

Vectors and linear combinations線型結合せんけいけつごう - Basic Exercises

date2026-07-14document_iddoc_bb57b0f1e18c548d0b80d65a48ea62ccdescriptionベクトルの和・スカラー倍・線型結合・張る空間・一次独立性を、計算と幾何的な意味の両方から確認する基本演習である。prerequisites線型性の基本 / ベクトルの基本演算 / 線型結合と張る空間の基本 / 列ベクトルの独立性と階数への橋渡しtype問題演習content_typeexercisestatusactiverelateddata/lecture/math/linear-algebra/linearity-basics.lecture.n.md / data/lecture/math/linear-algebra/vector-operations.lecture.n.md / data/lecture/math/linear-algebra/linear-combinations-and-spans.lecture.n.md / data/lecture/math/linear-algebra/column-independence-and-rank.lecture.n.md / data/lecture/math/linear-algebra/rank-basics.lecture.n.md
mathlinear-algebraexercisevectorspan
data/lecture/math/linear-algebra/linearity-basics.lecture.n.md data/lecture/math/linear-algebra/vector-operations.lecture.n.md data/lecture/math/linear-algebra/linear-combinations-and-spans.lecture.n.md data/lecture/math/linear-algebra/column-independence-and-rank.lecture.n.md

1Exercise plan

Read vectors not only as lists of components成分せいぶん, but also as points or arrows in space. A linear combination線型結合せんけいけつごう records how much of each given direction is mixed, and a span records the range reachable from those directions.


Use the same checkpoint in every problem: a linear combination線型結合せんけいけつごう is an equality of vectors, so the unknowns are the coefficients, not new vectors. Translate the vector equation into coordinate equations, solve those equations, and then interpret the result as membership in a span, failure of spanning, or a dependence relation.

Pay special attention to the zero vector and to non-unique coefficients. A nontrivial coefficient relation giving 0 proves linear dependence線型従属せんけいじゅうぞく; a system with no solution proves that the target vector is outside the span. These two conclusions answer different questions and should not be conflated.

2Problem 1

For

u=(2-13),v=(-140),

find 2u-3v and describe the geometric meaning.

2.1Answer example

2u-3v=(4-26)-(-3120)=(7-146).

This means moving twice in the direction of u and three times in the opposite direction of v.

2.2Explanation

Addition and scalar multiplication are componentwise. The result is one vector, constructed as a linear combination線型結合せんけいけつごう of u and v.


3Problem 2

Let

a1=(12),a2=(31),b=(97).

Decide whether b is a linear combination of a1,a2, and find coefficients if it is.

3.1Answer example

Set xa1+ya2=b. Then

\begin{cases}x+3y=9,\\2x+y=7.\end{cases}

Solving gives y=115 and x=125. Therefore

b=125a1+115a2.

3.2Explanation

Membership in a span is equivalent to solvability of the coefficient equation. This is not just substitution; it is a test of whether b lies in the space spanned by a1,a2.


4Problem 3

Determine whether

w1=(102),w2=(01-1),w3=(2-15)

are linearly independent一次独立いちじどくりつ or linearly dependent一次従属いちじじゅうぞく.

4.1Answer example

Set c1w1+c2w2+c3w3=0. This gives

\begin{cases}c_1+2c_3=0,\\c_2-c_3=0,\\2c_1-c_2+5c_3=0.\end{cases}

The first two equations give c1=-2c3 and c2=c3, and the third then holds identically. Taking c3=1 gives

-2w1+w2+w3=0.

Thus the vectors are linearly dependent.

4.2Explanation

A nontrivial coefficient relation proves dependence. Here w3=2w1-w2, so no new direction is added.


5Problem 4

Describe geometrically the space spanned by

p=(120),q=(240).

5.1Answer example

Since q=2p,

span(p,q)={t(120)tR},

which is a line through the origin.

5.2Explanation

The dimension of a span is determined by independent directions, not by the number of listed vectors. This viewpoint leads to rank階数かいすう.


6Problem 5

Decide whether each statement is true and explain why.

  1. A vector set containing the zero vector is linearly dependent.
  2. A one-vector set {u} is linearly independent if u0.
  3. The empty set is linearly independent in the standard definition.

6.1Answer example

All are true.

6.2Explanation

If the zero vector is included, coefficient 1 on that vector and 0 on all others gives a nontrivial combination equal to 0. If u0, then cu=0 implies c=0. The empty set has no nontrivial coefficients that could give a counterexample, so it is defined as linearly independent.


7Supplementary problems: checks moved from the lecture

7.1Problem 6

For u=(2,-1,3)T and v=(0,4,1)T, compute u+v and 3u-2v.

7.2Answer example

u+v=(2,3,4)T and 3u-2v=(6,-11,7)T. This checks componentwise vector addition and scalar multiplication.

7.3Problem 7

Find a,b such that a(1,0)T+b(0,1)T=(5,-2)T.

7.4Answer example

a=5 and b=-2. In the standard basis標準基底ひょうじゅんきてい, coefficients are the components.

7.5Problem 8

Use components to identify the direction represented by 2(1,1)T-(3,-1)T.

7.6Answer example

2(1,1)T-(3,-1)T=(-1,3)T.

7.7Problem 9

Decide whether (1,0)T and (1,1)T span R2.

7.8Answer example

a(1,0)T+b(1,1)T=(a+b,b)T. For any (x,y)T, take b=y and a=x-y. Thus they span R2.

7.9Problem 10

Describe the span of (1,2)T and (2,4)T.

7.10Answer example

Since (2,4)T=2(1,2)T, the span is {t(1,2)TtR}.

7.11Problem 11

Confirm that (3,1)T is a linear combination of (1,0)T,(0,1)T.

7.12Answer example

(3,1)T=3(1,0)T+1(0,1)T.


8Supplementary problems: zero vector and boundary cases

8.1Problem 12

For u=(12), find 0u, -u, and u+(-u) and explain each.

8.2Answer example

0u=(00),-u=(-1-2),u+(-u)=(00).

0u is the zero vector, -u points opposite to u, and u+(-u) returns to zero by the additive inverse.

This problem checks boundary cases in vector operations. The vector 0u no longer preserves the direction of u, while -u keeps the same line but reverses the direction.

8.3Problem 13

For u=(12), explain why

span(u),span(u,0),span(u,2u)

are the same set.

8.4Answer example

Since 0=0u and 2u is a scalar multiple of u, adding them does not enlarge the set of linear combinations. Therefore

span(u)=span(u,0)=span(u,2u).

This problem checks that adding redundant vectors to a generating set does not necessarily change the span. Increasing the number of listed vectors is different from increasing the number of independent directions.


10Proof exercise: minimality of span

10.1Problem

Let S={v1,,vk}. Prove that span(S) is the smallest subspace部分空間ぶぶんくうかん containing S.

10.2Answer

Elements of span(S) are x=aivi and y=bivi. For scalars c,d,

cx+dy=(cai+dbi)vi,

so the span is closed under linear combinations and is a subspace. If U is any subspace containing S, it contains every linear combination of elements of S, so span(S)U.

10.3Explanation

The span is the smallest linear world built from the given vectorsベクトル using only linear combinations.

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
タブを全て閉じる