can someone please help me fast before midnight.

a)I need the correlation between x and y
b)slope of linear regression
c)y intercept of linear regression for the points
(1,8)(2,6)(3,4)(4,2)(5,5)

Your first 4 points follow a nice linear relation, the last point does not fit the pattern, perhaps you made a typo.

taking any two of the first two points gives us a slope of -2

using y = mx + b gives us y = -2x + b
sub in any point, e.g. (1,8)

8 = -2(1) + b
b = 10

a) the correlation between x and y is
y = -2x + 10

b) slope = -2

c) y intercept is 10

(your last point given (5,5) should have been (5,0) making it the x-intercept)

Of course, I'm here to help! Let's tackle each of your questions one by one:

a) To find the correlation between two variables (x and y), you need to calculate the correlation coefficient, also known as Pearson's correlation coefficient (r). This coefficient measures the strength and direction of the linear relationship between the two variables.

To find the correlation coefficient, you can follow these steps:
1. Calculate the mean (average) of both x and y.
2. Subtract the mean from each individual x and y value to get the deviations from the mean for both variables.
3. Multiply the deviations of x by the deviations of y for each value.
4. Square both the deviations of x and deviations of y individually.
5. Sum up all the products and the squared deviations for both x and y.
6. Divide the sum of the products by the square root of the product of the sum of the squared deviations for x and y.
7. The result of this division will be the correlation coefficient (r).

Keep in mind that there are various software tools and programming languages that can easily calculate the correlation coefficient for you, such as Excel, Python, R, etc.

b) To find the slope of a linear regression line, you need a set of (x, y) data points. Linear regression calculates the line that best fits these points using the formula: y = mx + b, where m represents the slope and b represents the y-intercept of the line.

To find the slope, you can follow these steps:
1. Calculate the mean (average) of both x and y.
2. Subtract the mean from each individual x and y value to get the deviations from the mean for both variables.
3. Multiply the deviations of x by the deviations of y for each value.
4. Sum up all the products.
5. Divide the sum of the products by the sum of the squared deviations of x.
6. The result of this division will give you the slope (m) of the linear regression line.

c) To find the y-intercept of a linear regression line for a set of (x, y) data points, you can use the same formula mentioned above: y = mx + b. The y-intercept (b) is the value of y when x is equal to 0.

To find the y-intercept, you can follow these steps:
1. Calculate the mean (average) of both x and y.
2. Subtract the mean from each individual x and y value to get the deviations from the mean for both variables.
3. Multiply the deviations of x by the deviations of y for each value.
4. Divide the sum of the products by the sum of the squared deviations of x.
5. Substitute the slope (m), calculated in step b, and the mean values of x and y into the formula: y = mx + b.
6. Rearrange the equation to solve for b: b = y - mx.
7. The result of this calculation will give you the y-intercept (b) of the linear regression line.

Please note that using software tools or programming languages such as Excel, Python, R, etc., can quickly provide you with the slope and y-intercept of a linear regression line for your given set of points.

If you have any specific values for x and y, please provide them, and I can perform the calculations for you.