namereq

Untitled

Jun 5th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. A(1,3,2) B(5,1,3)
  2. ベクトルAB(5-1,1-3,3-2)=(4,-2,1)
  3.  
  4. ①ベクトルABを直線ベクトルとする方法
  5. ある変数t、直線上の点を(x,y,z) とすると
  6. (x,y,z) = (1,3,2) + t (4,-2,1)
  7. よってtについて解くと
  8. t = (x-1)/4 = -(y-3)/2 = z-2
  9.  
  10. ∴(x-1)/4 = -(y-3)/2 = z-2
  11.  
  12. ②ベクトルABに垂直なベクトル2つ
  13. を法線ベクトルとする方法
  14. (4,-2,1)・(1,3,2)=0
  15. (4,-2,1)・(1,4,4)=0
  16. より
  17. (1,3,2),(1,4,4)はベクトルABに垂直なベクトル。
  18. (x-1, y-3, z-2) にこれらのベクトルは垂直なので、
  19.  
  20. 1(x-1)+3(y-3)+2(z-2)=0
  21. 1(x-1)+4(y-3)+4(z-2)=0
Advertisement
Add Comment
Please, Sign In to add comment