Memory Error on TI82 stats
MiniOllie
Posted messages
3
Status
Member
-
ccm81 Posted messages 11033 Status Member -
ccm81 Posted messages 11033 Status Member -
Hello,
I have a little problem with my TI. I need to enter a sequence to plot it, and when I do, it shows me "memory error." I deleted some programs and checked that the sequence was entered correctly, but it still shows that.
What should I do, please? :(
Configuration: Windows 7 / Internet Explorer 10.0
I have a little problem with my TI. I need to enter a sequence to plot it, and when I do, it shows me "memory error." I deleted some programs and checked that the sequence was entered correctly, but it still shows that.
What should I do, please? :(
Configuration: Windows 7 / Internet Explorer 10.0
5 answers
I don't have the TI82statfr available but
1. Maybe this
The sequence is 0.8Un+3. I entered exactly the same thing into the calculator
When you define your sequence, if you set u(n) = 0.8*u(n)+3, there's a problem
Your sequence is defined recursively, so you need to express the term u(n) in terms of the previous one, which is u(n-1)
u(n) = 0.8*u(n-1)+3
2. For the window
Xmin = 0
and take the same value for Xmax and nMax
Good luck
1. Maybe this
The sequence is 0.8Un+3. I entered exactly the same thing into the calculator
When you define your sequence, if you set u(n) = 0.8*u(n)+3, there's a problem
Your sequence is defined recursively, so you need to express the term u(n) in terms of the previous one, which is u(n-1)
u(n) = 0.8*u(n-1)+3
2. For the window
Xmin = 0
and take the same value for Xmax and nMax
Good luck