Skip to main content

All Questions

0 votes
1 answer
90 views

Finding the exact symbolic formula for a function defined recursively

Let me introduce the problem. I have the following functions; The first one is defined recursively $h(i,j):=\frac{i-1}{j+1}h(i+2,j-2)$ and $h(i,0)=1$ where $i$ and $j$ are even integers, greater than $...
ghost's user avatar
  • 391
3 votes
0 answers
67 views

Mathematica gives $RecursionLimit to every single input [closed]

I have been using Mathematica Cloud for about 3 months. About twice a month I encounter a strange and perplexing error that I have, until now, overlooked as an immovable bug. Every function I input, ...
Jackie Carson's user avatar
2 votes
0 answers
142 views

Why does this memoized function cause the kernel to quit? [closed]

The following memoized recursive function causes the kernel to beep and quit. ...
qwr's user avatar
  • 433
2 votes
1 answer
132 views

My version of PowerMod breaks down around 10^308

I have been trying to write a function that duplicates PowerMod[a, b, n], computing a^b mod n...
Shinaolord's user avatar
1 vote
1 answer
102 views

Getting error RSolve::dsfun [closed]

I an trying to solve a recursive formula and find the explicit representation of $a$. $a_0 = 1$ $a_{n+1} = 3 \sum\limits_{i=0}^{n} a_i$ When I evaluate ...
Hu Liu's user avatar
  • 13
5 votes
4 answers
4k views

High Fibonacci numbers [duplicate]

When I investigate Fibonacci's series fib[n_] := fib[n] = fib[n - 1] + fib[n - 2] fib[0] = fib[1] = 1; Block[{$RecursionLimit = 10^4}, fib[10^3]] I can evaluate ...
NeverMind's user avatar
  • 1,201
1 vote
1 answer
2k views

I get "Recursion depth of 1024 exceeded during evaluation" for the simplist recursion [closed]

I typed f[n_] := n f[n - 1] that I found here in the official reference and still get the error when I try f[10] like the ...
Anton Kahwaji's user avatar
4 votes
3 answers
323 views

Limit of an Expression Created with Nest

I have implemented Newton's Method, and I am trying to find the exact value of the zero of a polynomial using Limit. The dream is that the following code works: <...
Mike Pierce's user avatar
0 votes
2 answers
164 views

Receiving no output when executing this code

Today I was trying to compute the value of a function in one point ($f(3594641)$) using Mathematica. The main difficulty it has is that it requires both calculating primorials (product of primes) and ...
user3141592's user avatar
4 votes
1 answer
97 views

How to avoid RecursionLimit error when using Interpretation formatting?

I am trying to define a function that has similar behavior as Indexed. Here is the code ...
Everett You's user avatar
  • 2,297
1 vote
2 answers
283 views

Floor function issue [closed]

While attempting to evaluate a recurrence relation an error with the Floor function is encountered. Computing an example to verify the floor function works correctly I ran the code ...
Leucippus's user avatar
  • 365
1 vote
1 answer
189 views

Modify code to avoid recursion limit warning [closed]

I programmed a recursive function and I want to see the evolution depending on the number of trials. I want to find the value of k for which the difference between $rec_i^k$ and $rec_i^{k+1}$ is equal ...
user36063's user avatar
1 vote
0 answers
115 views

Why am I getting this "recursion depth" error message? [closed]

I am simply trying to use this command p[1,2][1]/.{p[x_,y_][m_]:>pp[x,y][m]} and I'm getting an error message ...
Alex Mathers's user avatar
1 vote
2 answers
165 views

Print argument of function that exceeds $RecursionLimit

Is there a way to print the argument of a function which results in a $RecursionLimit::reclim error? As an example, cosider the code ...
Frederik Ziebell's user avatar
1 vote
1 answer
2k views

Why do I get an error message when for this type of recursion?

When I type the following code: mus[] = 0; mus[x__] := First[List[x]] + mus[Rest[List[x]]] What one would think would happen is that if, ...
I would like to remain anon.'s user avatar

15 30 50 per page