2 つのベクトルの内積を計算します。

このページでは、それが何であるか、そして 2 つのベクトルの内積を計算する方法を説明します。また、内積を使用して 2 つのベクトル間の角度を見つける方法と、さらに内積のすべてのプロパティも学習します。最後に、段階的に解決された例と演習を使って練習できるようになります。

2 つのベクトル間の内積を計算する方法

数学におけるドット積は、2 つのベクトルを乗算して実数に変換するベクトル演算です。したがって、2 つのベクトルの内積を計算するには 2 つの方法があります。

2 つのベクトルの座標がわかっている場合は、X 成分と Y 成分を掛け合わせて結果を加算することで、それらの内積を求めることができます。言い換えると、2 つのベクトルがあるとします。

\vv{\text{u}} = (\text{u}_x,\text{u}_y) \qquad \vv{\text{v}} = (\text{v}_x,\text{v}_y)

それらの間の内積は次のとおりです。

\displaystyle  \vv{\text{u}} \cdot \vv{\text{v}} = \text{u}_x\cdot \text{v}_x + \text{u}_y\cdot \text{v}_y

たとえば、次の 2 つのベクトルの内積は次のようになります。

\vv{\text{u}} = (1,2) \qquad \vv{\text{v}} = (-1,3)

\displaystyle  \begin{aligned} \vv{\text{u}} \cdot \vv{\text{v}}&=(1,2)\cdot (-1,3) \\[1.5ex]&=1\cdot (-1) + 2 \cdot 3 \\[1.5ex] & = -1+6  \\[1.5ex] & =\bm{5} \end{aligned}

これは、2 つのベクトル間の内積を見つける方法です。ただし、別の方法もあります。

一方、モジュールと 2 つのベクトル間の角度がわかっている場合は、モジュールの積とそれらが形成する角度の余弦を計算することで、2 つのベクトル間のスカラー積を決定できます。

\displaystyle  \vv{\text{u}} \cdot \vv{\text{v}} = \lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \cdot \cos(\alpha )

\lvert \vv{\text{u}} \rvert

そして

\lvert \vv{\text{v}} \rvert

ベクトルのモジュールです

\vv{\text{u}}

そして

\vv{\text{v}}

それぞれと

\alpha

彼らが作る角度。

ベクトルの大きさはその成分の二乗根であることを思い出してください。

\displaystyle \lvert \vv{\text{u}} \rvert = \sqrt{ \text{u}_x^2+\text{u}_y^2}

例として、モジュールとそれらの間の角度が次のような 2 つのベクトルのスカラー積を解きます。

\displaystyle \lvert \vv{\text{u}} \rvert =3 \qquad \lvert \vv{\text{v}} \rvert = 4 \qquad \alpha=60º

\displaystyle \begin{aligned} \vv{\text{u}} \cdot \vv{\text{v}} & = \lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \cdot \cos(\alpha ) \\[1.5ex] &= 3 \cdot 4 \cdot \cos(60º)\\[1.5ex] & = 3 \cdot 4 \cdot 0,5 \\[1.5ex] &= \bm{6} \end{aligned}

一方、ドット積は、ドット積、スカラー積、ドット積とも呼ばれます。

注:内積と外積を混同しないでください。名前は似ていますが、概念はまったく異なります。

内積を使用して 2 つのベクトルの間の角度を見つけます

内積の定義を見ると、2 つのベクトルを乗算する目的は何なのか疑問に思うかもしれません。そうですね、内積の応用の 1 つは、2 つのベクトルによって形成される角度を計算することです。

2 つの内積ベクトルの間の角度

内積公式の余弦を解くと、次が得られます。

\definecolor{taronjaquadreejemplo}{HTML}{FF9800}\newtcbox{\mymath}[1][]{%     nobeforeafter, math upper, tcbox raise base,     enhanced, colframe=taronjaquadreejemplo,      boxrule=1.1pt, boxsep=2mm,     #1} \begin{empheq}[box={\mymath[colback=white, shadow={2mm}{-2mm}{0mm}{taronjaquadreejemplo!20!white,} ]}]{equation*} \cos(\alpha) =\cfrac{\vv{\text{u}} \cdot \vv{\text{v}}}{\lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert}\end{empheq}

例を通してこれがどのように行われるかを見てみましょう。

  • 次の 2 つのベクトル間の角度を求めます。

\vv{\text{u}} = (4,2) \qquad \vv{\text{v}} = (-1,5)

まず、2 つのベクトルの大きさを見つける必要があります。

\displaystyle \lvert \vv{\text{u}} \rvert = \sqrt{ 4^2+2^2}= \sqrt{20}

\displaystyle \lvert \vv{\text{v}} \rvert = \sqrt{ (-1)^2+5^2}= \sqrt{26}

次に、次の式を使用して 2 つのベクトル間の角度の余弦を計算します。

\displaystyle \cos(\alpha) =\cfrac{\vv{\text{u}} \cdot \vv{\text{v}}}{\lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert}=\cfrac{ 4\cdot (-1) + 2\cdot 5}{\sqrt{20}\cdot \sqrt{26}} = \cfrac{6}{\sqrt{520}} = 0,26

最後に、電卓を使用してコサインの逆関数を実行して、対応する角度を見つけます。

\displaystyle \cos^{-1}(0,26) = \bm{74,93º}

したがって、ベクトルは 74.93 度の角度を形成します。

2 つのベクトルの内積のプロパティ

内積には次の特性があります。

  • 可換性: ベクトルを乗算する順序は関係ありません。

\displaystyle \vv{\text{u}} \cdot \vv{\text{v}} =\vv{\text{v}} \cdot \vv{\text{u}}

  • 分配的性質: ドット積はベクトルの加算と減算に関して分配的です。

\displaystyle \vv{\text{u}}( \vv{\text{v}}+ \vv{\text{w}} )=\vv{\text{u}} \cdot \vv{\text{v}}+ \vv{\text{u}} \cdot \vv{\text{w}}

\displaystyle \vv{\text{u}}( \vv{\text{v}}- \vv{\text{w}} )=\vv{\text{u}} \cdot \vv{\text{v}}- \vv{\text{u}} \cdot \vv{\text{w}}

  • 連想プロパティ: 結果が等しいため、演算の実行前または実行後にドット積に定数を乗算できます。

\displaystyle k\cdot (\vv{\text{u}} \cdot \vv{\text{v}}) = (k\cdot\vv{\text{u}}) \cdot \vv{\text{v}} =\vv{\text{u}} \cdot (k\cdot\vv{\text{v}})

  • 2 つのベクトルが直交(または直交) している場合、それらの内積は 0 になります。 2 つの直交するベクトルの角度は 90 度であり、90 度のコサインは 0 に等しいため、この特性は簡単に実証できます。

\displaystyle \begin{aligned} \vv{\text{u}} \cdot \vv{\text{v}} & = \lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \cdot \cos(90º ) \\[1.5ex] &=\lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \cdot 0 \\[1.5ex] &= 0 \end{aligned}

  • 逆に、2 つのベクトルが平行である場合、それらのスカラー積はモジュールの積と同じになります。同じ方向の 2 つのベクトルが 0° の角度を形成し、そのコサインが 1 に等しいため、この特性も簡単に検証できます。

\displaystyle \begin{aligned} \vv{\text{u}} \cdot \vv{\text{v}} & = \lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \cdot \cos(0º) \\[1.5ex] &=\lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \cdot 1 \\[1.5ex] &= \lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \end{aligned}

  • 最後に、ベクトル自体の内積は、その大きさの 2 乗に相当します。

\displaystyle\vv{\text{u}} \cdot \vv{\text{u}} & = \lvert \vv{\text{u}} \rvert ^2

2 つのベクトル間のスカラー積問題を解決しました

演習 1

次の 2 つのベクトルの平面内の内積を計算します。

\vv{\text{u}} = (4,-3) \qquad \vv{\text{v}} = (5,2)

2 つのベクトルの内積を計算するには、X 座標と Y 座標を掛け合わせて、結果を加算する必要があります。

\displaystyle \begin{aligned}\vv{\text{u}} \cdot \vv{\text{v}}  & = (4,-3)\cdot (5,2)  \\[1.5ex] & = 4\cdot 5 + (-3) \cdot 2 \\[1.5ex] & = 20-6\\[1.5ex] & =\bm{14} \end{aligned}

演習 2

モジュールとそれらが形成する角度が次のような 2 つのベクトルのスカラー積を求めます。

\displaystyle \lvert \vv{\text{u}} \rvert =6 \qquad \lvert \vv{\text{v}} \rvert = 3 \qquad \alpha=45º

それらのモジュールとそれらの間の角度がわかっているので、内積公式を直接適用できます。

\displaystyle \begin{aligned} \vv{\text{u}} \cdot \vv{\text{v}} & = \lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert \cdot \cos(\alpha ) \\[1.5ex] &= 6 \cdot 3 \cdot \cos(45º)\\[1.5ex] & = 6 \cdot 3 \cdot 0,71 \\[1.5ex] &= \bm{12,73} \end{aligned}

演習 3

次の 2 つのベクトル間の角度はいくらですか?

\displaystyle \vv{\text{u}}=(3,8) \qquad  \vv{\text{v}} =(-4,1)

まず、2 つのベクトルの大きさを計算する必要があります。

\displaystyle \lvert \vv{\text{u}} \rvert = \sqrt{ 3^2+8^2}= \sqrt{73}

\displaystyle \lvert \vv{\text{v}} \rvert = \sqrt{ (-4)^2+1^2}= \sqrt{17}

次の式を使用して、ベクトルによって形成される角度の余弦を計算します。

\displaystyle \cos(\alpha) =\cfrac{\vv{\text{u}} \cdot \vv{\text{v}}}{\lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert}=\cfrac{ 3\cdot (-4) + 8\cdot 1}{\sqrt{73}\cdot \sqrt{17}} = \cfrac{-4}{\sqrt{1241}} = -0,11

そして最後に、計算機を使用してコサインの逆関数を実行して、対応する角度を見つけます。

\displaystyle \cos^{-1}(-0,11) = \bm{96,52º}

演習 4

次の 2 つのベクトルを考えてみましょう。

\displaystyle \vv{\text{u}}=(5,2) \qquad \vv{\text{v}} =(-1,6)

次の演算を計算します。

4 \bigl(\vv{\text{u}} \cdot\vv{\text{v}}\bigr)

まず括弧内のドット積を解く必要があり、次に括弧の外側のドット積による乗算を行う必要があります。

4 \bigl(\vv{\text{u}} \cdot\vv{\text{v}}\bigr)

4 \bigl((5,2) \cdot (-1,6) \bigr)

4 \bigl(5 \cdot (-1) + 2 \cdot 6 \bigr)

4 \bigl(-5 + 12 \bigr)

4 \cdot 7

\bm{28}

演習 5

次の 3 つの 2 次元ベクトルがあるとします。

\displaystyle \vv{\text{u}}=(-2,6) \qquad \vv{\text{v}} =(4,-3)\qquad \vv{\text{w}} =(-1,2)

次の演算を計算します。

\vv{\text{w}} \cdot \bigl( 5 \vv{\text{u}}- 2 \vv{\text{v}}\bigr)

まず、ベクトルに括弧内のスカラーを乗算します。

\vv{\text{w}} \cdot \bigl( 5 \vv{\text{u}}- 2 \vv{\text{v}}\bigr)

(-1,2) \cdot \bigl( 5 (-2,6)- 2(4,-3)\bigr)

(-1,2) \cdot \bigl( (-10,30)- (8,-6)\bigr)

ここでベクトルの減算を行います。

(-1,2) \cdot  (-10 -8,30-(-6))

(-1,2) \cdot  (-18,36)

そして最後に、スカラー積を解きます。

(-1)\cdot (-18) + 2 \cdot 36

18 + 72

\bm{90}

演習 6

の値を計算します

k

次のベクトルが垂直になるようにします。

\displaystyle \vv{\text{u}}=(-2,-3) \qquad  \vv{\text{v}} =(k,6)

2 つの直交するベクトルは 90 度の角度を形成します。したがって、cos(90°)=0 であるため、角度の余弦はゼロでなければなりません。まだ:

\displaystyle \cos(90º) =\cfrac{\vv{\text{u}} \cdot \vv{\text{v}}}{\lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert}

\displaystyle 0=\cfrac{\vv{\text{u}} \cdot \vv{\text{v}}}{\lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert}

分数の分母は方程式の右側全体を除算するので、もう一方の側で乗算することでそれを渡すことができます。

\displaystyle 0 \cdot \lvert \vv{\text{u}} \rvert \cdot \lvert \vv{\text{v}} \rvert  =\vv{\text{u}} \cdot \vv{\text{v}}

\displaystyle 0  =\vv{\text{u}} \cdot \vv{\text{v}}

ここでスカラー積を解きます。

\displaystyle 0 =(-2,-3) \cdot (k,6)

\displaystyle 0 =-2 \cdot k + (-3)\cdot 6

\displaystyle 0 =-2 k -18

そして最後に、未知の部分を明らかにします。

\displaystyle 2k =-18

\displaystyle k =\cfrac{-18}{2}

\displaystyle \bm{k =-9}

演習 7

角度を計算する

\alpha , \beta

そして

\gamma

これらは次の三角形の辺を形成します。

2 つのベクトルの内積を段階的に解決する演習と問題

三角形を構成する頂点は次の点です。

A(2,1) \qquad B(4,4) \qquad C(6,2)

三角形の内角を計算するには、その各辺のベクトルを計算し、内積公式を使用してそれらが形成する角度を見つけます。

たとえば角度を求めるには

\alpha

その辺のベクトルを計算します。

\vv{AB} = B - A = (4,4)-(2,1)= (2,3)

\vv{AC} = C - A = (6,2)-(2,1)= (4,1)

そして、内積公式を使用して 2 つのベクトルによって形成される角度を求めます。

\lvert \vv{AB} \rvert = \sqrt{2^2+3^2} = \sqrt{13}

\lvert \vv{AC} \rvert = \sqrt{4^2+1^2} = \sqrt{17}

\displaystyle \cos(\alpha) =\cfrac{\vv{AB} \cdot \vv{AC}}{\lvert \vv{AB} \rvert \cdot \lvert \vv{AC} \rvert}=\cfrac{ 2\cdot 4 + 3\cdot 1}{\sqrt{13}\cdot \sqrt{17}} = \cfrac{11}{\sqrt{221}} =0,74

\bm{\alpha = 42,27º}

同じ手順を繰り返して角度を決定します

\beta:

\vv{BC} = C - B = (6,2)-(4,4)= (2,-2)

\lvert \vv{BC} \rvert = \sqrt{2^2+(-2)^2} = \sqrt{8}

\displaystyle \cos(\beta) =\cfrac{\vv{AB} \cdot \vv{BC}}{\lvert \vv{AB} \rvert \cdot \lvert \vv{BC} \rvert}=\cfrac{ 2\cdot 2 + 3\cdot (-2)}{\sqrt{13}\cdot \sqrt{8}} = \cfrac{-2}{\sqrt{104}} =-0,20

\bm{\beta = 101,31º}

最後に、最後の角度を見つけるために、同じ手順を繰り返すことができます。ただし、三角形のすべての角度の合計は 180 度になる必要があるため、次のようになります。

\gamma = 180 -42,27-101,31 = \bm{36,42º}

コメントする

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

上部へスクロール