We know angle P is 90 degrees because of Thales Theorem, and angle N is 60 degrees. Because the angles in a triangle have to add up to 180 degrees, angle PMN has to be 30 degrees.
Angle QMO is half of angle PMN, so it's 15 degrees. Angle MQO is equal to angle QMO because the radii make Triangle OQM isosceles, so angle MQO is 15 degrees.
The answer is 80 hope this helps :)
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).
Answer:
23,856
Step-by-step explanation: