Answer:
12. 18g+80
13. 13x+13
14. 17s
15. 3t
Step-by-step explanation:
On each you just combine the like terms and simplify the equations.
(Add/subtract all of the common numbers)
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:
Step-by-step explanation:
What we know
total sum of angles = 540 deg
3/2 b cam also be written as 1.5b degrees.
So 1.5b + (b+45) + (2b - 90) +90 = 540
Step 1 -- get rid of parenthesis
1.5b + b + 45 +2b -90 +90 =540
Step 2 -- combine the like expressions
4.5b + 45 = 540
Step 3 -- subtract 45 from both the sides
4.5b = 495
Step 4 -- divide 4.5 from both the sides
b = 110 ----- not the right answer
Thats not right okay im sorry
but i guess if it is not 110 it should be 100, 90 etc.
90 = b is correct
Answer:
The vertices are (-16,-5) and (14,-5)
The foci are (-26,-5) and (24,-5)