Step-by-step explanation:
A) opposite sides in a rectangle is always equal
B) 9x+12 = 4x +47
Transpose = 9x - 4x = 47 - 12
solve = 5x = 35
Divide both sides by 5
x = 7
Answer:
Written in Python
def sums(n):
total = 0
for i in range(1,n+1):
if i%2 == 0:
total = total + i*2
else:
total = total + i
return(total)
Step-by-step explanation:
The function is written in Python
def sums(n):
This initializes total to 0
total = 0
This iterates through the integers that makes up n i.e. 1,2,3.....n
for i in range(1,n+1):
This checks if current digit is even
if i%2 == 0:
If yes, it adds the double of the digit
total = total + i*2
else:
If otherwise, it adds the digit
total = total + i
This prints the calculated sum or total
return(total)
To call the function from main, use the following:
print(sums(n))
Where n is a positive integer. i.e. 
Answer:
B. This event will not happen.
C. The probability is 0.
Step-by-step explanation:
Only B and C can be answers because there are no green marbles so how can you select a green marble when there aren't any. The probility is 0 which means never going to happen.
Altogether Katrina and her seven friends equal eight. Eight divided by four is two cookies. The answer is 2.