I have the following equations -
T = (2*cos[α]*sin[β])/sin[α + β];
sin[α]/sin[β] = sqrt[1 - V/E];
And I want to eliminate β from the two equations so as to obtain an expression for T. How should I proceed?
I have the following equations -
T = (2*cos[α]*sin[β])/sin[α + β];
sin[α]/sin[β] = sqrt[1 - V/E];
And I want to eliminate β from the two equations so as to obtain an expression for T. How should I proceed?
Or can just use eliminate. First get into equation form without the upper case variables. E is a particularly bad idea unless you mean the built in constant E.
eq1 = t == (2*Cos[α]*Sin[β])/Sin[α + β]//TrigExpand;
eq2 = Sin[α]/Sin[β] == Sqrt[1 - v/e];
Eliminate[{eq1, eq2}, β] // Simplify
(*t^2*v == 4*e*(t - 1)*Cos[α]^2*)
Solve[Sin[α]/Sin[β] = Sqrt[1 - V/E], β]
(*
π - ArcSin[(Sqrt[E] Sin[α])/Sqrt[E - V]]
*)
T /. β -> π - ArcSin[(Sqrt[E] Sin[α])/Sqrt[E - V]]
$-\frac{2 \sqrt{e} \sin (\alpha ) \cos (\alpha ) \csc \left(\alpha -\sin ^{-1}\left(\frac{\sqrt{e} \sin (\alpha )}{\sqrt{e-V}}\right)\right)}{\sqrt{e-V}}$
note the result here simplifies nicely using TrigExpand
(2*Cos[α]*Sin[β])/Sin[α + β] /.
Solve[Sin[α]/Sin[β] == Sqrt[1 - v/e] , β] //
Simplify
(* conditional expression *)
result = Simplify[%, Assumptions -> C[1] ∈ Integers] //
TrigExpand // Simplify
and simpler still if you add Assumptions -> 0 < v < e (if true of course)
Plot[Evaluate[result /. {v -> .1, e -> .2}], {α, -2 Pi, 2 Pi}]
t those constants simplify out (due to the forward trig functions). Unfortunately we are left with a ConditionalExpression that still says C[1] must be an integer even though there is no C[1] in the expression, so my last simplify just gets rid of that.
– george2079
Jan 23 '18 at 16:58
Sinis the proper usage, notsin,Sqrtnotsqrt, ... etc. – David G. Stork Jan 22 '18 at 19:45Sin,Sqrt, etc). You canSolve` the second expression for beta and sub into the first. – george2079 Jan 22 '18 at 19:49