#proof question

16 messages · Page 1 of 1 (latest)

halcyon vapor
#

"prove that a^2 + b^2 = 1000003"

how would i solve this? also what knowledge would i need in order to solve something like this

worn geyserBOT
flint hearth
vernal thistle
#

It is impossible to write 1000003 as sum of 2 squares

#

Hint: ||modulo 4||

worn geyserBOT
halcyon vapor
halcyon vapor
flint hearth
#

use that to learn what modulo and what modular arithmetic is'

#

once you know that, the first link I sent you essentially said:

  • write a number in its prime factorization
  • look for a (prime that is 3 mod 4)^(an odd number) in the prime factorization
  • if you find any, the number can't be written as the sum of two squares
  • if you don't find any, the number can be written as the sum of two squares

1000003 is prime
so the prime factorization of 1000003 is just 1000003^1

  • 10000003 is a prime that is 3 mod 4
  • 1 is odd
    so 1000003 can't be written as the sum of two squares
worn geyserBOT
wooden heart
#

.close