Answer:
D) arccsc (x) = arcsin (1/x)
Step-by-step explanation:
Here's how you can prove it: Consider a right triangle with hypotenuse 1 and a side length 1/x. If θ is the angle opposite of 1/x, then:
sin θ = 1/x
and
csc θ = x
Solving for θ:
θ = arcsin (1/x)
θ = arccsc (x)
Therefore:
arccsc (x) = arcsin (1/x)
Subtract ; 68 - 24 =44 so that means Sarah is 44 years old.
The next number in the series is 30.
<h3>What is series?</h3>
It should be noted that series simply means the operation of adding values together in a data set.
In this case, it can be seen that the numbers are interchangeable between 30 and 31.
In this case, since 31 was the last number, the next number will be 30.
Learn more about series on:
brainly.com/question/24295771
#SPJ1
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: