I have the following problem. Let $\alpha:=\alpha(v)$ and $\beta:=\beta(v)$, where $v\in\mathbb{R}$. Using MAPLE, I would like to plot $\alpha$ and $\beta$ in the $(\alpha,\beta)$ space as $v$ varies continuously. I suspect that this will involve creating lists in Maple. I need some help! Here is what I am thinking at this time:
restart:
alpha:=v-> some function of v:
beta:=v-> some function of v:
for v from 0.01 to 10 by 0.001 do
alpha:=alpha(v):
beta:=beta(v):
? put the alpha and beta into a list?
od:
?plot the sequence of points in the list?
I need some direction/help from Maple users out there, please.
No manual lists required.