Let $T$ be the triangle in $\mathbb{R}^2$ with vertices $(0,0)$, $(1,0)$, $(\frac12, \frac12)$. Find the area of the inverse image of $T$ under the orthogonal projection $\phi(x,y,z)=(x,y)$.
So I find the following:
$\psi(0,0) = (0,0,1)$, $\psi(1,0) = (1,0,0)$, $\psi(\frac12,\frac12) = (\frac12,\frac12,\frac1{\sqrt2})$
Then the area is $\frac12\cdot$(length of one side)$\cdot$(length of another side)$\cdot\sin\theta$ and $\theta = \cos^{-1}\left(\frac{\text{dot product of two sides}}{\text{norms of two sides}}\right)$. However, I get some mess with lots of square roots.
What am I doing wrong?
Given $A(0,0,1);\;B(1,0,0);\;C (\frac12,\frac12,\frac1{\sqrt2})$
define two vectors $\vec u=B-A;\;\vec v=C-B$
we get $$\vec u=(1,0,-1);\;\vec v=(-\frac12,\frac12,\frac1{\sqrt2})$$ the area of the triangle is $$Area(\Delta)=\frac12||\vec u\times \vec v||$$ the cross product can be computed by the determinant of this formal matrix $$\left( \begin{array}{ccc} \vec i & \vec j & \vec k \\ 1 & 0 & -1 \\ -\frac{1}{2} & \frac{1}{2} & \frac{1}{\sqrt{2}} \\ \end{array} \right)$$ giving $$\vec u\times \vec v= \frac{\vec i}{2}+\frac{\vec j}{2}-\frac{\vec j}{\sqrt{2}}+\frac{\vec k}{2}$$ where $\{\vec i,\vec j,\vec k\}$ is a base of $\mathbb{R}^3$.
In components $$\vec u\times \vec v= \left(\frac12,\frac12-\frac{1}{\sqrt 2},\frac12\right)$$ and $$Area(\Delta)=\frac12||\vec u\times \vec v||=\frac{1}{4} \sqrt{5-2 \sqrt{2}}\approx 0.3684$$