Group Abstract Group Abstract

Message Boards Message Boards

Ploting two recurrence in the same figure

Posted 1 year ago
POSTED BY: Raafat Abo-Zeid
2 Replies
Posted 1 year ago

Please check this very carefully before you even think of trusting this, make certain that I have not made any mistake in this. If I have made a mistake then perhaps you can guess what my thinking was and be able to correct this.

x[0]=1;x[1]=1;x[n_]:=x[n-2]/(2+x[n-1]);xtbl=Table[x[n],{n,0,10}]
y[0]=1;y[1]=1;y[n_]:=6/5 y[n-1]/(1+y[n-2]);ytbl=Table[y[n],{n,0,10}]
ListPlot[{xtbl,ytbl}]

Since the first two points of the two sequences are the same, the color of one of the dots will lay over the other dot for those, but the points are distinct for the rest of the sequences and thus the points will be separate.

POSTED BY: Bill Nelson

Thank you very much!

POSTED BY: Raafat Abo-Zeid
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard