Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8713965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T05:28:33+00:00 2026-06-13T05:28:33+00:00

I have to write a recursive function sumSquares() that takes a non-negative (>= 0)

  • 0

I have to write a recursive function sumSquares() that takes a non-negative (>= 0) integer n as a parameter and returns the sum of the squares of the numbers between 1 and n. Example:

>>>sumSquares(2)
5
>>>sumSquares(3)
14

This is what I have so far:

def sumSquares(n):
    if n==0:
        return 0
    else:
        return sumSquares(n-1)+sumSquares(n-1)

Can I also have an explanation of what you did, I’m still in the process of learning recursion, and it would help a lot. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T05:28:35+00:00Added an answer on June 13, 2026 at 5:28 am

    Say you represent your function by S(x), x>0

    S(x) = 1^2 + 2^2 + ... x^2
    

    this can be written as

    S(x) = (1^2 + 2^2 + ...(x-1)^2 )+ x^2
    
    S(x) = S(x-1) + x^2. 
    

    Now for the program.

    def sumSquares(n):
            return sumSquares(n-1)+ n*n
    

    But the problem is this doesn’t know when to stop. We have to give a base case that tells it when to stop.

    You know that S(0) = 0 or S(1) = 1.

    therefore

    def sumSquares(n):
        assert n >= 0
        if (n == 0):
            return 0
        else:
            return sumSquares(n-1)+ n*n
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to write a recursive function printPattern() that takes an integer n as
I need to write a recursive function that can add two numbers (x, y),
I have an assignment to write a recursive function that writes the digits of
Write a recursive function search(l,key) that returns a boolean: True if key is in
I have a simple recursive function to write in VBA that does the following
I have been trying to write a recursive function that searches a stack, but
I need to write a recursive function that utilizes just two string methods, .empty?
So, the idea was a write a recursive function that compares two strings to
I have been trying to write a recursive version of function itoa , the
I have been at this all day, trying to write a recursive function in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.