Answer:
The answer is incorrect; the plus sign should be a minus sign (apex)
Step-by-step explanation:
Answer:
a) 615
b) 715
c) 344
Step-by-step explanation:
According to the Question,
- Given that, A study conducted by the Center for Population Economics at the University of Chicago studied the birth weights of 732 babies born in New York. The mean weight was 3311 grams with a standard deviation of 860 grams
- Since the distribution is approximately bell-shaped, we can use the normal distribution and calculate the Z scores for each scenario.
Z = (x - mean)/standard deviation
Now,
For x = 4171, Z = (4171 - 3311)/860 = 1
- P(Z < 1) using Z table for areas for the standard normal distribution, you will get 0.8413.
Next, multiply that by the sample size of 732.
- Therefore 732(0.8413) = 615.8316, so approximately 615 will weigh less than 4171
- For part b, use the same method except x is now 1591.
Z = (1581 - 3311)/860 = -2
- P(Z > -2) , using the Z table is 1 - 0.0228 = 0.9772 . Now 732(0.9772) = 715.3104, so approximately 715 will weigh more than 1591.
- For part c, we now need to get two Z scores, one for 3311 and another for 5031.
Z1 = (3311 - 3311)/860 = 0
Z2 = (5031 - 3311)/860= 2
P(0 ≤ Z ≤ 2) = 0.9772 - 0.5000 = 0.4772
approximately 47% fall between 0 and 1 standard deviation, so take 0.47 times 732 ⇒ 732×0.47 = 344.
Given
f(x)= -3x - 5
g(x)= 4x - 2
Find
(f - g)(x)
substitute the f and g values in (f - g)
(f - g)(x)= -3x - 5 - (4x - 2)
change the signs in parentheses because there is a negative sign in front of the parentheses
(f - g)(x)= -3x - 5 - 4x + 2
combine like terms
(f - g)(x)= -7x - 3
ANSWER: (f - g)(x)= -7x - 3
Hope this helps! :)
This is something to memorize
y = r*sin(theta)
so if y = 2, then
2 = r*sin(theta)
Divide both sides by sin(theta) to get
r = 2/sin(theta)
r = 2csc(theta)
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;
}