Answer:
Infinite Solution, Linear Graph = Infinite Solution
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:
Step-by-step explanation:
Jenny planned to solve 2/3 of homework
On Saturday she solved 28 problems, which is 7/8 of the planned number
<u>Planned number is:</u>
- 28 : 7/8 = 28 * 8/7 = 32 problems
<u>Jenny's homework was:</u>
- 32 : 2/3 = 32 * 3/2 = 48 problems
Answer:
what functions?
Step-by-step explanation:
Answer:
What I would conclude when a random sample of 23 time intervals between eruptions has a larger mean longer than 108 minutes is that there must be an error that occurred somewhere while computing the result.
Step-by-step explanation:
Technically error can be explained as the estimated difference between the real value or calculated value and an observed value of a certain quantity.
basically we have three types of error which are;
1. systematic errors.
2.random errors.
3.Bluders.