0

I'm in need of some help to address this problem.

Let $C$ be a curve given by two equations:

$x^2+y^2-z^2-1=0$,

$x^2-y^2-z^2-1=0$

Express the curve by means of parametric equations.

Any ideas on how to work on it?

KReiser
  • 65,137
Eva K.
  • 599
  • You may want to look up the notion of a hyperboloid. see e.g.
    1. https://math.stackexchange.com/questions/158042/deriving-parameterization-for-hyperboloid
    2. https://math.stackexchange.com/questions/697245/parametrization-of-the-hyperboloid-of-two-sheets
    – ferhenk Jan 21 '21 at 18:01
  • My answer was not complete. I edited to add what was missing – Raffaele Jan 21 '21 at 21:02

2 Answers2

2

Subtract the two equations. We get $y=0$

Plug in the first $$x^2-z^2=1$$ A parametrization is $$(x=\cosh t,y=0,z=\sinh t); (x=-\cosh t , y=0, z=-\sinh t)$$ In the image below the two surfaces and their intersection.


$$...$$

enter image description here

Raffaele
  • 26,371
1

If you take the first restriction and plug it into the second, you get

$$ x^2-y^2-(x^2+y^2-1) - 1 =0 \Leftrightarrow -2y^2 = 0 \Leftrightarrow y=0 $$

So, any point on the curve satisfies $y=0$ and $x^2-z^2 = 1$ and you can consider two separate parametrizations:

$$ (\sqrt{t^2+1}, 0, t), t\in \mathbb{R} $$

$$ (- \sqrt{t^2+1}, 0, t), t\in \mathbb{R} $$

PierreCarre
  • 20,974
  • 1
  • 18
  • 34