Answer:
Step-by-step explanation:
We can get this done by using the code
def digits(n):
count = 0
if n == 0:
return 1
while (n > 0):
count += 1
n= n//10
return count
Also, another way of putting it is by saying
def digits(n):
return len(str(n))
------------------------------------------
print(digits(25)) # Should print 2
print(digits(144)) # Should print 3
print(digits(1000)) # Should print 4
print(digits(0)) # Should print 1
Doing this way, we've told the system to count the number of figures that exist in the number. If it's 1000 to 9999, then it records it as 4 digits. If it's 100 - 999, then it records it as 3 digits. If it's 10 - 99, it records as 2 digits. If it's 0 - 9, then it has to record it as a single digit.
Thanks
<u>x = 3</u>
f(x) = x²+ 10x - 5
f(3) = (3)² + 10(3) - 5
f(3) = 9 + 30 - 5
f(3) = 39 - 5
f(3) = 34
g(x) = 8x + 1
g(3) = 8(3) + 1
g(3) = 25
h(x) = 3x - 4
h(3) = 3(3) - 4
h(3) = 9 - 4
h(3) = 5
<u>x = 6
</u>f(x) = x² + 10x - 5
f(6) = (6)² + 10(6) - 5
f(6) = 36 + 60 - 5
f(6) = 96 - 5
f(6) = 91
g(x) = 8x + 1
g(6) = 8(6) + 1
g(6) = 48 + 1
g(6) = 49
h(x) = 3x - 4
h(6) = 3(6) - 4
h(6) = 18 - 4
h(6) = 14
I would explain to someone that you don't need to do any calculations to know the order of the functions when x is equal to 15 by knowing that f(x) is equal to 370, g(x) is equal to 121, and h(x) is equal to 41 to know that it is easy finding the function of x without calculating the answer.
Noy completwly possitive what yhe quesrion is asking for but The number that shows up most often is 55 but the mean (average) is 50.06
I don't know how to get the answer, but i know the answer is 127.50.