ANSWER
On photo
EXPLANATION
Use the quadratic formula since the equation doesn't factorize not simplify by 3
Answer:
The correct option is;
A. A set of nine data pairs with a correlation coefficient r = -0.4
Step-by-step explanation:
In statistical analysis, it is important to make use of an adequate sample size in order to arrive at a valid result. An analysis with a very small sample size can provide misleading results
When performing regression analysis it is generally accepted by researchers that each variable should have at least 10 observations.
Therefore, the data set having nine data pairs with a negative correlation of -0.4 will provide the most valid result that can then be used for generalization about the larger statistical population.
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:
slope = 12/5 or 2.4
Step-by-step explanation:
(-2,-7), (3,5)
(5 - (-7) / 3 - (-2)) = (12 / 5)
slope = 12/5 or 2.4