From 938f1b0046b993fc6ab2e845532c8d3efe186b10 Mon Sep 17 00:00:00 2001 From: Lauchmelder23 Date: Tue, 9 Oct 2018 20:56:27 +0200 Subject: [PATCH] Added Problem 6 --- Problem_6.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Problem_6.py diff --git a/Problem_6.py b/Problem_6.py new file mode 100644 index 0000000..a952726 --- /dev/null +++ b/Problem_6.py @@ -0,0 +1,27 @@ +###################################################################### +# The sum of the squares of the first ten natural numbers is, +# +# 1² + 2² + ... + 10² = 385 +# The square of the sum of the first ten natural numbers is, +# +# (1 + 2 + ... + 10)² = 55² = 3025 +# Hence the difference between the sum of the squares of the first ten +# natural numbers and the square of the sum is 3025 − 385 = 2640. +# +# Find the difference between the sum of the squares of the first one +# hundred natural numbers and the square of the sum. +# +###################################################################### + +sum_of_squares = 0 +square_of_sums = 0 + +for i in range(0, 101): + sum_of_squares += pow(i, 2) + square_of_sums += i + +square_of_sums = pow(square_of_sums, 2) +difference = square_of_sums - sum_of_squares + +print(difference) +# Solution: 25164150