x = number of hours
want to find probability (P) x >= 13
x is N(14,1) transform to N(0,1) using z = (x - mean) / standard deviation so can look up probability using standard normal probability table.
P(x >= 13) = P( z > (13 - 14)/1) = P(z > -1) = 1 - P(z < -1) = 1 - 0.1587 = 0.8413
To convert that to percentage, multiply 100, to get 84.13%
Answer:
15% per year
7.5% half year
5000 * 7.5% = $375 every 6 months.
Step-by-step explanation:
Sanji scored 44 points more in the third round than in the first round.
So the problem ask to simplify the trigonometric function in your problem and base on the expression and using the theory in simplifying trigonometric function, the answer would be letter B. 2 sec^2 theta. I hope you are satisfied with my answer and feel free to ask for more
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}