Answer:



Step-by-step explanation:
We want to select all the terms that are not considered to be like terms with
.
The terms that are like terms with
must have
.
It doesn't matter the coefficient.
So we can easily see that all the following are not like terms with
:



Answer:
b
Step-by-step explanation:
75-30=45
6 is the amount that it cost for each guest well 6x7=42 therefore milo can only invite up to 7 guests to his party
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
Answer:
You can use <u>M a t h w a y . c o m </u> to answer your question. just type your expression in the website and hopefully you'll get an answer.
I think each girl had 8.1 points may be wrong