How can i use the Solve function to find the actual equation for a

  • Thread starter Thread starter peter.a
  • Start date Start date
  • Tags Tags
    Function
AI Thread Summary
The discussion focuses on using the Solve function to determine the fixed points of the function f(x) = u r (1 - u). The correct approach involves setting up the equation f[f[u]] == u to find fixed points, but it was clarified that using f[u] == u is sufficient for this purpose. This simpler equation will yield all solutions, including complex ones. The initial confusion arose from the consideration of attractive fixed points, but it was established that the direct approach with f[u] is adequate for finding fixed points without unnecessary complexity.
peter.a
Messages
19
Reaction score
0
How can i use the Solve function to find the actual equation for a fixed point?
For the function f(x)=ur(1-u)
 
Physics news on Phys.org


f[u_] := u r (1 - u)
Solve[f[f] == u, u]

the u_ means to use it as an input variable, the " := " means not to evaluate it until its used. So i just nested it once, f[f] == u should be the equation for a fixed point of f.
Solve[EQUATION,VARIABLE] is its use.

or SOLVE[{EQ1,EQ2},{V1,V2}] for multivariate solutions.

I assume "u" was the variable in this case as f(x) = u r (1- u) has no x in it.
 


why have you done f[f==u and not f==u?
is this because then it also gives the complex solutions?
 


Ah that was a mistake. I was thinking of attractive fixed point functions.

Yeah Solve[f==u,u] should be enough. It will give all solutions, include any complex ones.
 


Thanks for clearing that up, because i was getting confused
 

Similar threads

Replies
8
Views
3K
Replies
19
Views
2K
Replies
2
Views
2K
Replies
1
Views
2K
Replies
4
Views
3K
Replies
3
Views
2K
Replies
0
Views
499
Back
Top