1/11 = 0.09...with a line over the 09 because it repeats
-17/40 = - 0.425
-2 12/18 = -2.66...with a line over the 66 because it repeats
8 15/22 = 8.681....with a line over the 81 because it repeats
Expand it
-(x+3)^2-1
-(x+3)(x+3)-1
-1(x^2+3x+3x+9)-1
-1(x^2+6x+9)-1
-x^2-9x-9-1
-x^2-9x-10
f(x)=-x^2-9x-10
Answer:
x = 12
Step-by-step explanation:
42 + 4x = 90 ( as it is right angle)
transpose to find x
4x = 90 - 42
4x = 48
x = 48/4
x = 12
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
1- false a positive is greater than a negative so clearly there could be positive answers to the inequality. 2-true since the numbers and sign flipped it would still be the same