LFCFAN
- 22
- 0
Homework Statement
How to find area of an n-dimensional triangle using vectors?
First, what do you mean by the area of such an object? Do you mean its n-dimensional volume?LFCFAN said:Homework Statement
How to find area of an n-dimensional triangle using vectors?
Homework Equations
The Attempt at a Solution
LFCFAN said:Find the area of the triangle with sides
A = (a1 ... an)
B = (b1 ... bn)
and A-B = (a1-b1 ... an-bn)
I don't even know where to start. I know how to do it in 3D with the cross product, but that obviously won't work for higher dimensions.
So I need help generalizing for Rn.
LFCFAN said:I've literally typed out the question as it has been given.
I think take it as a standard triangle in n-dim space
LFCFAN said:A = {2,1,2,4}
B = {4,1,6,2}
angle = arccos( (A.B)/(norm(A)*norm(B)) )
area = (1/2)A.B sin(angle)
Is this correct? if yes, it is easy to generalize for Rn.