+0  
 
0
664
4
avatar

Sydney chooses two different primes, both greater than 10 and computes their product P. The product P is less than 500. How many different possible values of P are there?

 Dec 19, 2019
 #1
avatar+115 
+2

Using a little bit of case work, we find that P can have 19 different values.

 Dec 19, 2019
edited by NewMember  Dec 20, 2019
 #2
avatar
0

Got it. Thanks

Guest Dec 19, 2019
 #3
avatar
+1

a=(11 , 13 , 17 , 19 , 23 , 29 , 31 , 37 , 41 , 43); i=0; j=2; c=a[0]*a[1]; cycle: m=a[i]*a[j]; if(m<500, c=sort(c,m), goto next);j++; if(j next: i++; j=i+1; if(j

 

 

OUTPUT: (143, 187, 209, 221, 247, 253, 299, 319, 323, 341, 377, 391, 403, 407, 437, 451, 473, 481, 493)>>Total = 19 such numbers.

 Dec 19, 2019
 #4
avatar+128408 
+1

Answered this just a few days ago.....

 

The guest's answer of 19  is correct    !!!!

 

 

 

cool cool cool

CPhill  Dec 19, 2019

1 Online Users

avatar