Groups
Groups
Sign in
Groups
Groups
sympy
Conversations
About
Send feedback
Help
Double recursive relation and normal form
16 views
Skip to first unread message
Christophe Bal
unread,
Feb 3, 2017, 6:56:58 PM
2/3/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sympy-list
Hello.
I have the following function on the set of natural.
def B(n):
if n == 1:
return 1
return n * B(n - 1) + n*(n-1)/2*C(n - 1)
def C(n):
if n == 1:
return 1
return n * B(n - 1) + n*(n-1)*C(n - 1)
for k in range(2, 6):
print C(k)
Can SymPy gives me a normal form if it exists ?
Christophe BAL
Enseignant de mathématiques en Lycée
et développeur Python amateur
---
French teacher of
math
in a high school
and
amateur
Python
developer
Reply all
Reply to author
Forward
0 new messages