Skip to main content
8-Gravel
February 24, 2023
Question

Programming in Prime

  • February 24, 2023
  • 3 replies
  • 1389 views

I want to construct a program in such a manner that both the variables are unknown and whole number 

a+b=5

a is a whole number

b is a whole number

b>a

Could you please help?

3 replies

21-Topaz II
February 24, 2023
25-Diamond I
February 24, 2023

"whole number" does not exclude negative numbers and so you would have an infinite number of solution pairs.
Is this the intention or was Terry right when he assume that 0 would be acceptable but negative numbers are not?

 

In case that negative numbers are OK, too, you would have to provide a limit  - either a lower limit for a (runs from 2 down) or, as in the screenshot below, an upper limit for b (runs from 3 upwards):

 

Werner_E_0-1677267702144.png

 

Or are you looking for some kind of brute force attack?

Werner_E_0-1677268596542.png

 

 

 

 

16-Pearl
February 24, 2023

Just a different take on it.  Solutions for a and b must lie on a line for any value of 't'.  So we can use y=m*x+b.  b>a only for t<2.5.

 

  2023-02-24_15-07-17.png