Given:
Budget = $30
cost of pizza = $9
cost of drinks = $1
number of pizza = p
number of drinks = d
pizza and drinks should only be equal to or less than the budget of $30.
$9p + $1d <u>< </u>$30
unit cost of pizza : 9
unit cost of drinks : 1
total cost of set (p & d) 10
pizza = 9/10 x 30 = 27 total cost of pizza
drinks =1/10 x 30 = 3 total cost of drinks
27 ÷ 9 = 3 number of pizzas to order
3 ÷ 1 = 3 number of drinks to order
To check:
9p + 1d <u>< </u>30
9(3) + 1(3) <u>< </u>30
27 + 3 <u>< </u>30
30 <u>< </u>30
No you can not do get 30 with the sum of 3 odd numbers
1 pound equals 16 ounces
10 times 16 equals 160 ounces plus 1/2 a pound which is 8
168 ounces
Answer:
<u>Residue</u>
Step-by-step explanation:
Let a and b be integers. We define a mod b to be the residue of dividing a by b. For example, if a evenly divides b, then a mod b=0, 20 mod 6= 2. The modulus operator is widely used in programming, and it is convenient when a and b are large numbers.
a mod b is always a nonnegative integer. In fact, 0≤ a mod b≤ |b-1| by the division algorithm. a and b can also be negative integers. Since 8=-(-5)+3 then 8 mod -5= 3.
As a final example, some known properties can be rewritten in terms of mod. a mod 2=0 if and only if a is even. a mod 2=1 if and only if a is odd.
Answer:
i think this may help you