| 
 
 
| Question 881281:  Hi, an archer fires 3 arrows at his target. I need to create a table to show all of the possible scores he can make. Thankyou.
 Answer by JulietG(1812)
      (Show Source): 
You can put this solution on YOUR website! You'll need to establish what the scores can be.  Let's assume a bullseye is 10 points, a blue ring is 5 points, and a white ring is 1 point.  Also, are you looking for total scores or scores per arrow?  If the latter, then... .
 10,10,10
 10,10,5
 10,10,1
 10,5,10
 10,5,5
 10,5,1
 10,1,10
 10,1,5
 10,1,1
 5,10,10
 5,10,5
 5,10,1
 5,5,10
 5,5,5
 5,5,1
 5,1,10
 5,1,5
 5,1,1
 1,10,10
 1,10,5
 1,10,1
 1,5,10
 1,5,5
 1,5,1
 1,1,10
 1,1,5
 1,1,1
 .
 This assumes that he did not MISS and score a zero.
 
 | 
  
 | 
 |