How to get an equation of a line, given an equation for y and an equation for x?

38 Views Asked by At

I have to generate a graph, with $y = e^{a\cdot t} - 1$ and $x = e^{b\cdot t} - 1 $ for all possible values of t. Constants a & b are given. In other words, the curve generated will be the locus of all points having all possible values of t. Thanks for your help!

1

There are 1 best solutions below

0
On

I will assume that $a,b$ are real constants and $t$ is a real variable.

You could invert the formula for $x$, to get $$t = \frac {\log (x+1)} b$$ and then plug it in the formula for $y$, to get $$y = \exp\left({\frac a b \log (x+1)}\right) - 1 = (x+1)^{a/b} - 1$$

The domain for this formula is $x > -1$.