Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
388 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 Answer

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...