Answer:
He needs to add 5 more the ration will then be 6 parts green to 10 parts red.
Step-by-step explanation:
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:
36.575
Step-by-step explanation:
you need to find line ab you can do
for the triangle and get the line you also need to get the squar root of it as it is still squared then devide by 2 to get the rades then times that by pi and there you go you have the area also sorry for spelling I love math not English
Did you get this answer???!