Hello community.
As I remember for other types of software, I can do a loop to repeat the equation until it satisfy a current condition.
So now I have an equation that I need repeat the function until it satisfy the condition. I have check Mathematica tutorials and I can't seem to find a best method (maybe I still don't understand the functions completely). Here is what I want to do.
Tinitial = (*any value*)
f[t_] = (*something*)
(*Obtain Tnew*)
Tnew=Tinitial -> False
Replace Tinitial with Tnew
Repeat Loop until Tnew=Tinitial -> True
Stop
Or Stop when Looping of function reached N-loops So any suggestions?