Area of the shaded sector = (120/360) * pi * 10^2
= 104.72 square units
Area of the other sector = 2 * 104.72 = 209.44 sq units
7, 13, 19 and 25 have a common difference: 6.
6 added to 7 gives us 13; 6 added to 13 gives us 19, and so on.
Explicit formula: a(n) = 7 + 6(n-1), where 7 is the first term and n is the counter (1, 2, 3, ...).
The first term is 7 (given). This corresponds to n=1.
The second term is a(2) = 7 + 6(2-1), or 7 + 6, or 13. This corresponds to n = 2.
and so on.
I answered a similar question for someone else. The absolute value of a complex number is called the modulus. This represents the DISTANCE to the origin from the point on the imaginary + real plane.
the real horizontal distance is 5 and the imaginary vertical distance is in this case 4 (from -4i) the distance is 4. So to figure out this just use the Pythagorean theorem.
5^2 + (4)^2 = c^2
25 +16 = c^2
c^2 = 41c = 6.4 So option D.
The awnser would be , 4x+4adetx
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).