Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
384 views
in Technique[技术] by (71.8m points)

math - Python function to decompose a number in all possible sum of squares

I am trying to solve this problem for days now, no strategy came to my mind. We need to decompose a number into all different possible ways it can be summed up from squares of other non repeating numbers.

Example: The number 50 can be decomposed in 3 different ways:

7^2 + 1^2   =   3^2 + 4^2 + 5^2   =   1^2 + 2^2 + 3^2 + 6^2   =   50

We need to know in how many ways can a random number be decomposed.

question from:https://stackoverflow.com/questions/65862330/python-function-to-decompose-a-number-in-all-possible-sum-of-squares

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Let nsp( n) be the number of such partitions of n, and nspl( n, k) be the number of such partitions with the least number in it being k Then

nsp( n) = Sum{ k*k <= n | nspl( n, k) }
nspl( n, k) = 1, if n==k*k
              nspl( n-k*k, k+1), otherwise

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...