How do I solve an equation for a power of $t$, e.g. solving
$$-t(x–8)/8 = –2(x+4)/t$$
for $t^2$ instead of $t$, i.e. to get the answer
$$t^2=16(x+4)/(x–8)$$
from Solve?
I can solve it for $t$ easily and square $t$, but can it be done 'directly' using Solve? TIA.
Solve? – Artes Feb 13 '20 at 14:27Solve[{-t(x-8)/8==-2(x+4)/t, t^2==16(x+4)/(x-8)}, x]should work, in case of doubts read this post What is the difference between Reduce and Solve? – Artes Feb 13 '20 at 14:37Solve[-t (x - 8)/8 == -2 (x + 4)/t, x]yieldsx -> (8 (8 + t^2))/(-16 + t^2). Is it what you want? – Alexei Boulbitch Feb 13 '20 at 15:05