I'm studying the hyperbola given by the implicit function $x^2/16-y^2/2=1$
I need plot the hyperbola and the asymptotes $y=b/a\,x$ and $y=-b/a\,x$. Then I need to select a point on the hyperbola and show the tangent line at that point. Also, I need to show the points of intersection of the tangent with the asymptotes, which will make a triangle with the origin. Finally, I need find the area of the triangle.
Here what I have tried so far:
a = x^2/16 - y^2/2 == 1;
as1 = Sqrt[2] x/4;
as2 = -Sqrt[2] x/4;
Show[
ContourPlot[x^2/16 - y^2/2 == 1, {x, -5, 5}, {y, -4, 4}],
Plot[{as1, as2}, {x, -5, 5}]]

