Radius = OC = OD
Solve for x:
10x -16 = 6x+2
4x = 18
x = 9/2 = 4.5
Sub 'x' back into OC
OC = 6(4.5) + 2 = 29
Radius = 29
Answer:
Step-by-step explanation:
Answer:
7. 20 + 5 + 3/10 + 6/100
8. 7 + 4/10 + 2/100 + 5/1000
Step-by-step explanation:
We are writing two numbers in expanded form, to help, we can use the guide above both numbers. Expanded form is all about breaking apart a number by place value and putting them in an additional sequence.
Let's look at 7, 25.36.
There are the tens, ones, tenths, and hundredths place being used, therefore :
20 + 5 + 3/10 + 6/100
We can do the same for 8, 7.425.
There are ones, tenths, hundredths, and thousandths being used, therefore :
7 + 4/10 + 2/100 + 5/1000
Answer:
1) Decimal 
2) Binary 
3) Octal 
4) Hexadecimal 
Step-by-step explanation:
Given : Integer is 25
To find : Represent integer in decimal, binary, octal, and hexadecimal formats.
Solution :
1) Integer into decimal - To convert into decimal the base goes to 10.
So, 
2) Integer into binary - To convert into binary the base goes to 2, it form in 0 and 1 and we divide integer by 2.
Divide 25 by 2 and note down the remainders.
2 | 25
2 | 12 R=1 ←
2 | 6 R=0 ↑
2 | 3 R=0 ↑
2 | 1 → R=1 ↑
So, 
3) Integer into octal - To convert into octal the base goes to 8 and we divide integer by 8.
Divide 25 by 8 and note down the remainders.
8 | 25
| 3 → R=1
So, 
4) Integer into hexadecimal - To convert into hexadecimal the base goes to 16 and we divide integer by 16.
Divide 25 by 16 and note down the remainders.
16 | 25
| 1 → R=9
So, 
Answer:
integers ∪ [0, ∞)
Step-by-step explanation:
The floor function gives the largest integer not greater than the input value. For non-negative numbers, that is the integer portion of the number, as Jim says.
However, for negative numbers, the floor is one less than the integer portion of any number that has a non-zero fractional part.
floor(1.2) = 1
floor(0.2) = 0
floor(-0.2) = -1
floor(-1.2) = -2
For any integer, negative or otherwise, the floor function gives that integer value.
Jim is correct on the domain of all integers and positive non-integers.