0

The first time I ran the cells the program was fine, then I started using FindRootPlot, but it didn't work well so I removed the line and went back to using FindRoot and it gave me some crawl errors that I don't quite understand This is the program working well

This is the same program but after I used the FindRootPlot

Anton Antonov
  • 37,787
  • 3
  • 100
  • 178
  • 6
    Please copy and paste, or retype, Mathematica code into a question and indent it manually or using the use {} button. Then readers can directly copy and paste into a notebook. They cannot do this if you just insert images of code! – murray Nov 21 '20 at 21:58

1 Answers1

4

I think the recursion behavior is due to the use of Subscript(See 77625).

To solve this problem:

  1. Stop using subscripts for evaluations.
  2. Use Clear["Subscript", "x"] to clean the definitions(which are cleaned by your Quit).
asd1dsa
  • 573
  • 4
  • 8