create aMATLABfunction that approximates the probability in the following experiment with simulations!Two fair dice are thrown. Find the probability that the sum of thenumbers obtained is 8.
The number of simulation should beN = 10^3. The variablepshould store the approximation.
function p = sim()
N = 10^3;
p = ;
end
does any body have an idea how to continue from here?