the picture in the attached figure
we know that
area of the triangle is equal to

in this problem
A=47 in²
b=x
h=x
so

therefore
the answer is
x=9.7 in
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;
}
Answer:
It means line which is chioce 3 or C.
Step-by-step explanation:
A. There is a positive correlation between the temperature and the amount of ice cream sold. This means that as the temperature increases the amount of ice cream also increases.
B. For the best fit you must calculate the slope between two points that are more-or-less representative of the entire graph. In this case it seems to have already done this with certain points so if you take the points (15,35) and (0,5) you can calculate the slope between these two points which is m=(35-5)/(15-0)=30/15=2. So the best fit slope for this particular case would be two and you would just draw a line through the graph at approximately the middle of the dots to best represent all of the data.
and the y-intercept is 5 so the approximate equation for the graph would be y=2x+5
Answer:
Step-by-step explanation:
<u>a)</u>
- Given that ; X ~ N ( µ = 65 , σ = 4 )
From application of normal distribution ;
- Z = ( X - µ ) / σ, Z = ( 64 - 65 ) / 4, Z = -0.25
- Z = ( 66 - 65 ) / 4, Z = 0.25
Hence, P ( -0.25 < Z < 0.25 ) = P ( 64 < X < 66 ) = P ( Z < 0.25 ) - P ( Z < -0.25 ) P ( 64 < X < 66 ) = 0.5987 - 0.4013
- P ( 64 < X < 66 ) = 0.1974
b) X ~ N ( µ = 65 , σ = 4 )
From normal distribution application ;
- Z = ( X - µ ) / ( σ / √(n)), plugging in the values,
- Z = ( 64 - 65 ) / ( 4 / √(12)) = Z = -0.866
- Z = ( 66 - 65 ) / ( 4 / √(12)) = Z = 0.866
P ( -0.87 < Z < 0.87 )
- P ( 64 < X < 66 ) = P ( Z < 0.87 ) - P ( Z < -0.87 )
- P ( 64 < X < 66 ) = 0.8068 - 0.1932
- P ( 64 < X < 66 ) = 0.6135
c) From the values gotten for (a) and (b), it is indicative that the probability in part (b) is much higher because the standard deviation is smaller for the x distribution.