Question

Let x be a random variable that represents the percentage of successful free throws a professional...

Let x be a random variable that represents the percentage of successful free throws a professional basketball player makes in a season. Let y be a random variable that represents the percentage of successful field goals a professional basketball player makes in a season. A random sample of n = 6 professional basketball players gave the following information.

x

87

88

70

84

78

76

y

53

57

50

51

46

50


Given that Se = 3.054, a= 16.547, b= 0.425, and , find the predicted percentage of successful field goals for a player with x= 73% successful free throws.

Homework Answers

Answer #1

In R find the regression model

Rcode is

x <- c(87,88,70,84,78,76)
y <- c(53,57,50,51,46,50)
rmod1 <- lm(y~x)
summary(rmod1)

output:

Call:

lm(formula = y ~ x)

Residuals:

1 2 3 4 5 6

-0.4121 3.2424 2.4606 -1.3758 -4.3030 0.3879

Coefficients:

Estimate Std. Error t value Pr(>|t|)

(Intercept) 23.3576 15.6745 1.49 0.21

x 0.3455 0.1941 1.78 0.15

Residual standard error: 3.054 on 4 degrees of freedom

Multiple R-squared: 0.4419, Adjusted R-squared: 0.3024

F-statistic: 3.168 on 1 and 4 DF, p-value: 0.1497

y=23.3576+ 0.3455 *x

slope=0.3455

y intercept=23.3576

For x=73

we get

y=23.3576+ 0.3455 *73

y= 48.5791

y=49

rounding to nearest integer

the predicted percentage of successful field =49

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Let x be a random variable that represents the percentage of successful free throws a professional...
Let x be a random variable that represents the percentage of successful free throws a professional basketball player makes in a season. Let y be a random variable that represents the percentage of successful field goals a professional basketball player makes in a season. A random sample of n = 6 professional basketball players gave the following information. x: 86 70 80 76 70 67 y: 57 43 46 50 50 41 Given that Se ≈ 4.075, a ≈ 16.319,...
Let x be a random variable that represents the percentage of successful free throws a professional...
Let x be a random variable that represents the percentage of successful free throws a professional basketball player makes in a season. Let y be a random variable that represents the percentage of successful field goals a professional basketball player makes in a season. A random sample of n = 6 professional basketball players gave the following information. x 65 80 68 64 69 71 y 43 49 51 47 42 52 Given that Se ≈ 4.306, a ≈ 17.085,...
Let x be a random variable that represents the percentage of successful free throws a professional...
Let x be a random variable that represents the percentage of successful free throws a professional basketball player makes in a season. Let y be a random variable that represents the percentage of successful field goals a professional basketball player makes in a season. A random sample of n = 6 professional basketball players gave the following information. x 57 36 34 59 39 46 y 44 27 34 36 39 40 ​ Verify that Se ≈ 5.306, a ≈...
Let x be a random variable that represents the percentage of successful free throws a professional...
Let x be a random variable that represents the percentage of successful free throws a professional basketball player makes in a season. Let y be a random variable that represents the percentage of successful field goals a professional basketball player makes in a season. A random sample of n = 6 professional basketball players gave the following information: x: 81 65 78 87 70 81 y: 46 48 54 51 44 51 Given that Se ≈ 3.668, a ≈ 16.331,...
Let x be a random variable that represents the percentage of successful free throws a professional...
Let x be a random variable that represents the percentage of successful free throws a professional basketball player makes in a season. Let y be a random variable that represents the percentage of successful field goals a professional basketball player makes in a season. A random sample of n = 6 professional basketball players gave the following information. x 64 64 88 66 64 72 y 38 45 50 45 45 41 Given that ∑x = 418, ∑y = 264,...
It is thought that prehistoric Indians did not take their best tools, pottery, and household items...
It is thought that prehistoric Indians did not take their best tools, pottery, and household items when they visited higher elevations for their summer camps. It is hypothesized that archaeological sites tend to lose their cultural identity and specific cultural affiliation as the elevation of the site increases. Let x be the elevation (in thousands of feet) for an archaeological site in the southwestern United States. Let y be the percentage of unidentified artifacts (no specific cultural affiliation) at a...
Let x be a random variable that represents the batting average of a professional baseball player....
Let x be a random variable that represents the batting average of a professional baseball player. Let y be a random variable that represents the percentage of strikeouts of a professional baseball player. A random sample of n = 6 professional baseball players gave the following information. x 0.324 0.288 0.340 0.248 0.367 0.269 y 2.6 7.8 4.0 8.6 3.1 11.1 (a) Verify that Σx = 1.836, Σy = 37.2, Σx2 = 0.572074, Σy2 = 290.38, Σxy = 10.7052, and...
11.4 #7 Let x be a random variable that represents the batting average of a professional...
11.4 #7 Let x be a random variable that represents the batting average of a professional baseball player. Let y be a random variable that represents the percentage of strikeouts of a professional baseball player. A random sample of n = 6 professional baseball players gave the following information. x 0.328 0.270 0.340 0.248 0.367 0.269 y 3.2 7.8 4.0 8.6 3.1 11.1 (a) Find ?x, ?y, ?x2, ?y2, ?xy, and r. (Round r to three decimal places.) ?x =...
1. Random Variable: The variable X represents the number of goals scored by the soccer team...
1. Random Variable: The variable X represents the number of goals scored by the soccer team Liverpool FC during all competitions of the 2018- 2019 season. X: 0, 1, 2, 3, 4, 5 P(X): 0.13, 0.25, 0.23, 0.17, 0.17, 0.05 a. Does the above table represent a probability distribution for the variable X? Explain. b. Calculate the mean value for the variable X. c. What is the probability that they score 2 or more goals for a given game during...
Attempt 2 Stephen is a basketball player who makes 82 % of his free throws over...
Attempt 2 Stephen is a basketball player who makes 82 % of his free throws over the course of a season. Each day, Stephen shoots 70 free throws during practice. Assume that each day constitutes a simple random sample, SRS, of all free throws shot by Stephen, and that each free throw is independent of the rest. Let the random variable X equal the count of free throws that Stephen makes. Compute the probability that Stephen makes at least 56...