How do you plot a recursion equation such as
f[n_] := n f[n - 1]
Thanks, Jake
Thank you very much for your help Jake
Thank you. If you don't mind how would I plot two different functions to see if there intersection? Thanks again Jake
As any data- or discrete- function.
Clear@f f[1] = Pi; f[n_] := f[n] = n f[n - 1] ListLinePlot[Table[f[n], {n, 1, 5}], PlotTheme -> "Business"]
DiscretePlot[f[n], {n, 5}, PlotTheme -> "Business"]