T-stub method
How can I find Alpha if "m", "m_2" and "e" are known. (I'm using Mathcad prime 3)


How can I find Alpha if "m", "m_2" and "e" are known. (I'm using Mathcad prime 3)


You will have to look up the syntax of root(). You can use it with just two parameters (and will need a guess value) or with four parameters if you know two values of alpha where the function you want to solve for have different sign.
I am not sure what you wanted to get with the root() expression in your file. You are asking for a value of alpha where lamda1' is zero! Look at the definition of lamda1', the only value of alpha which will make this expression to zero is infinity, so Mathcad will find no solution, even if you use the correct sytnax!
What you have asked for is a value of alpha which makes lamda1(L2, alpha) - L1 to zero. L1 and L2 are the lamda values you get using m1,m2 and e.
So you have to setup your function(s) correct.
lamda2' should only be dependent on alpha and its definition will call lamda1' so you will have to use
lamda1'(alpha), not just lamda1'.
The same applies to the definition of lamda1() - all lamda1' and lamda2' there need the parameter alpha as they are functions, not variables.
After that you have to calculate L1 and L2 dependent on m,m2 and e and then at last find the root of the function lamda1(L2,alpha)-L1. I would suggest the 2 patrameter variant of root with a guess value of alpha:=8. You should assign the result of root() to variable alpha to be able to use it in your plot.
You may also consider defining a range variable for lamda2 (0,0.01..1.4) for a smoother plot.

No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.