The complete question in the attached figure
we know that
[area of a circle]=pi*r²
for r=1 unit
[area of a circle]=pi*1²---------> pi units²
if the area a full circle of 360°--------------> is pi
the area of sector 88°------------------------> X
X=88*pi/360--------> 0.77 units²
the answer is
<span>
the area of sector AOB is 0.77 units</span>
²
Answer:
D. x = 7
Step-by-step explanation:
The labeled angles are the acute angles of a right triangle, so they are complementary. Their measures add up to 90 deg.
8x + 7 + 3x + 6 = 90
11x + 13 = 90
11x = 77
x = 7
Answer:
Efectivamente, si se suman los resultados de la tabla del 2 con los de la tabla del 5 se obtienen los resultados de la tabla del 7.
Step-by-step explanation:
Esto es así porque 7 puede formarse a través de diversas sumas (7+0, 6+1, 5+2 o 4+3). Por ende, en el caso de las tablas de multiplicaciones, decir, por ejemplo, 7 x 3, es igual a decir 5 x 3 + 2 x3, dado que 5 + 2 es igual a 7.
Entonces, siguiendo el ejemplo, dado que 7 x 3 es igual a 21, la suma de 5 x 3 igual a 15 y 2 x 3 igual a 6 es 21 (15 + 6), con lo cual la afirmación es correcta.
Answer:
648
Step-by-step explanation:
Running this in Python, with the code as follows,
import math
cur_numbers = [0] * 3
num = 0
for i in range(100, 1000):
cur_numbers[2] = i % 10
i = math.floor(i/10)
cur_numbers[1] = i % 10
i = math.floor(i/10)
cur_numbers[0] = i % 10
if(len(set(cur_numbers)) == 3):
num += 1
print(cur_numbers)
print(num), we get 648 as our answer.
Another way to solve this is as follows:
There are 9 possibilities for the hundreds digit (1-9). Then, there are 10 possibilities for the tens digit, but we subtract 1 because it can't be the 1 same digit as the hundreds digit. For the ones digit, there are 10 possibilities, but we subtract 1 because it can't be the same as the hundreds digit and another 1 because it can't be the same as the tens digit. Multiplying these out, we have
9 possibilities for the hundreds digit x 9 possibilities for the tens digit x 8 possibilities for the ones digit = 648
The answer is C. Hope that helps