ベクトルの内積 内積の定義と性質
内積・外積・空間図形を通してベクトルを深く理解しよう (数学のかんどころ 1) (飯高 茂(著, 編集)、中村 滋(編集)、岡部 恒治(編集)、桑田 孝泰(編集)、共立出版)の第2章(ベクトルの内積)、2.1(内積の定義と性質)の問題2.1の解答を求めてみる。
(複号同順)
コード(Wolfram Language, Jupyter)
a = {1, 2, 3};
b = {-4, 0, 6};
Solve[{a . x == b . x == 0, x . x == 1}, x]
This system cannot be solved with the methods available to Solve.: This system cannot be solved with the methods available to Solve.
Solve[{a . x == 0, b . x == 0, x . x == 1}, x]
This system cannot be solved with the methods available to Solve.: This system cannot be solved with the methods available to Solve.
v = {x, y, z};
Solve[{a . v == b . v == 0, v . v == 1}, v]