Message Boards Message Boards

0
|
6813 Views
|
2 Replies
|
2 Total Likes
View groups...
Share
Share this post:

What am I missing in eliminating variables from parametric equations? [res]

POSTED BY: Alan Feuerbacher
2 Replies

Well, white space for one thing. The product r*Cos[t], which may be written r Cos[t], is definitely not the same thing as rCos[t] (notice lack of a space).

Then there is the problem that you can only eliminate one variable if given two equations. In attempting to eliminate two of them, Eliminate might not select the one you really want.

This may be more to your liking.

`eqn = {x == r Cos[t], y == r Sin[t]}
Eliminate[eqn, {t}]

Out[695]= {x == r Cos[t], y == r Sin[t]}

During evaluation of In[695]:= Eliminate::ifun: Inverse functions are being used by Eliminate, so some solutions may not be found; use Reduce for complete solution information. >>

Out[696]= r^2 - y^2 == x^2`
POSTED BY: Daniel Lichtblau

Thank you!

The white space was my main problem, followed by a bit of a brain glitch. Various other test examples work now.

POSTED BY: Alan Feuerbacher
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract