Solve two variables of a recursive equation in Mathematica, is this possible?

I tried to use a RSolverecursive equation in Mathematica to solve two variables, but it just repeats what I'm typing.

Is it possible to solve two variable recursive equations in Mathematica?

+3
source share
2 answers

Perhaps you should include the equation in your question, since maybe you are just using it RSolveincorrectly.

Mathematica can solve some equations with two recurrence variables, but not all.

Sometimes a free packageGuess.m may decide that RSolveit cannot. (You must request access to the file, contact information is on this page.)

+2

RecurrenceTable[] , . , , , . , .

,

logisticMap[r_,x0_,maxn_]:=RecurrenceTable[{x[n+1]==r x[n](1-x[n]),x[0]==x0},x,{n,0,nmax}]; Manipulate[ListPlot[Transpose[{Range[0,maxn],logisticMap[r,x0,maxn]}],PlotRange->{0,1}],{{r,3.485},0,4},{{x0,0.432},0,1},{{maxn,500},10,1000,1}]

Logistic Map Example

RecurrenceTable .

+2

All Articles