Try   HackMD

GeoGebra 教學 10:向量積(3D繪圖區)

作者:王一哲
日期:2019/4/7

向量積 (vector product) 也稱為叉積 (cross product),在高中數學課本中被稱為外積,但是在數學上有另一個外積 (outer product),兩者是不同的。假設向量

a
b
分別定義為

a=(x1,y1,z1)
b=(x2,y2,z2)

則兩者的向量積為

c=a×b=|i^j^k^x1y1z1x2y2z2|=(y1z2z1y2,z1x2x1z2,x1y2y1x2)

也可以利用降階寫成3個2乘以2的行列式

c=a×b=|y1z1y2z2|i^|x1z1x2z2|j^+|x1y1x2y2|k^=(y1z2z1y2,z1x2x1z2,x1y2y1x2)


配合目前高中數學課本使用的符號再寫一次,假設向量

a
b
分別定義為

a=(a1,a2,a3)
b=(b1,b2,b3)

則兩者的向量積為

c=a×b=|i^j^k^a1a2a3b1b2b3|=(a2b3a3b2,a3b1a1b3,a1b2a2b1)

也可以利用降階寫成3個2乘以2的行列式

c=a×b=|a2a3b2b2|i^|a1a3b1b3|j^+|a1a2b2b2|k^=(a2b3a3b2,a3b1a1b3,a1b2a2b1)

通常用會下圖幫助學生記得運算規則,將向量

a
b
各寫兩次,再刪除頭、尾兩欄,接下來每兩欄為一組,左上、右下兩者相乘減掉右上、左下兩者相乘,即可寫出
(a2b3a3b2,a3b1a1b3,a1b2a2b1)

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
向量積運算


相當於是向量

a
b
在空間中形成的平行四邊形的法向量。

a
b
的夾角為
θ
,則
c=a×b
的量值相檔於取
a
b
的垂直量相乘,即
c=absinθ


本次課程檔案已上傳至 GeoGebraTube,可以線上操作或下載檔案,網址為 https://ggbm.at/upfavbyq

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
向量積

繪圖步驟

  1. 由於向量積運算的結果會和相乘的兩個向量垂直,必須開啟3D繪圖區才能顯示圖形,我們先由檢視3D繪圖區或是快速鍵Ctrl+Shift+3開啟3D繪圖區。
Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
開啟3D繪圖區選單

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
3D繪圖區

  1. 用以下指令新增點O、A、B。

    ​​​​O = Point({0, 0, 0})
    ​​​​A = Point({4, 0, 0})
    ​​​​B = Point({2, 3, 4})
    
  2. 用以下指令新增向量u、v。

    ​​​​u = Vector(O, A)
    ​​​​v = Vector(O, B)
    
  3. 將點A沿著向量v平移,畫出點C。

    ​​​​C = Point(A, v)
    
  4. 用以下指令畫出平行四邊形OACB。

    ​​​​Polygon(O, A, C, B)
    
Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
向量積繪圖步驟1 ~ 5

  1. 用以下指令畫出平行四邊形OACB的中點D。

    ​​​​D = Midpoint(O, C)
    
  2. 計算

    u×v 並命名為向量w。

    ​​​​w = Cross(u, v)
    
  3. 將點D沿著向量w平移,再畫出向量

    area=DD

    ​​​​D' = Point(D, w)
    ​​​​area = Vector(D, D')
    

    可以將步驟7、8合併為一行指令

    ​​​​area' = Vector(D, Point(D, Cross(u, v)))
    
Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
向量積繪圖最終成果

相關指令的官方說明書

  1. https://wiki.geogebra.org/en/Point_Command
  2. 向量 https://wiki.geogebra.org/en/Vector_Command
  3. 多邊形 https://wiki.geogebra.org/en/Polygon_Command
  4. 中心點 https://wiki.geogebra.org/en/Midpoint_Command
  5. 向量積 https://wiki.geogebra.org/en/Cross_Command


tags:GeoGebra