help help!

pepperoni

New member
Joined
Dec 30, 2019
Messages
1
I don't understand this at all, can somebody solve it please? if i posted in the wrong group sorry first time here

Given three positive integers a, b and c such that a² + b² - c² = 1. Let the number of unique triangles formed with sides a, b and c with perimeter less or equal than 50 million represent the surface area of an ellipsoid of axes lengths n, 2n and 3n. The anwser is the square of the ceiled positive solution of n.
 
Where did you come across this problem? What is your maths background? This site is aimed towards helping you to solve the problem rather than just giving you an answer. But this is quite an intriguing question!

Initially I think you need to find how many positive integer triples a,b,c exist such that:-
  • a² + b² - c² = 1
  • a+b+c ≤ 50,000,000
You don't actually need to know the values of a,b,c that form the set of the solutions. Just work out how many solutions there are. However, I personally think that there's no shortcut, so you probably do need to work out what all the a,b,c triples are. Unless someone else on the forum has a clever method?

To start off, there are 24,999,999 solutions of the form b=1 and c=a.

And that's not all. Here are the additional solutions up to perimeter 50 with b≤a (since if a≠b then a and b can be trivially swapped to give another solution)...

Code:
     a      b      c
  ====================
     5      5      7
     7      4      8
     9      8     12
    11      7     13
    13     11     17
    15     10     18
    17      6     18
    19      9     21

I think you'll have to write and then run a program to find the final answer. Would you know how to do this?
 
I don't understand this at all, can somebody solve it please? if i posted in the wrong group sorry first time here

Given three positive integers a, b and c such that a² + b² - c² = 1. Let the number of unique triangles formed with sides a, b and c with perimeter less or equal than 50 million represent the surface area of an ellipsoid of axes lengths n, 2n and 3n. The anwser is the square of the ceiled positive solution of n.
So you have the "answer" but what is the question?
 
Top