1. You have two noisy scales and a bunch of people that you’d like to weigh. You weigh each person on both scales. The correlation was 0.75. If you normalized each set of weights, what would you have to multiply the weight on one scale to get a good estimate of the weight on the other scale?

                 X = scale A; Y = scaleB; cor(Y,X) = 0.75

So,
β1 = 0.75

and β0 = 0

because both variables have been normalizaed.

                Y = β1X; Y = 0.75X
                
  1. Consider the previous problem. Someone’s weight was 2 standard deviations above the mean of the group on the first scale. How many standard deviations above the mean would you estimate them to be on the second?

                 Y = β1Y => Y = 0.75X => 0.75⋅2 = 1.50
  2. You ask a collection of husbands and wives to guess how many jellybeans are in a jar. The correlation is 0.2. The standard deviation for the husbands is 10 beans while the standard deviation for wives is 8 beans. Assume that the data were centered so that 0 is the mean for each. The centered guess for a husband was 30 beans (above the mean). What would be your best estimate of the wife’s guess?

                 β1=cor(Y,X) sd(Y)/sd(X)
    
           X = beansHusbands;Y = beansWives
    
                         Y = β1X
cor_YX= 0.2
sdX <- 10 # Standard deviation husbands
sdY <- 8  # Standard deviation wives
# beta_1 <- cor_YX*sd(Y)/sd(X)
beta_1 <- cor_YX*sdY/sdX
beta_1
## [1] 0.16
X= beta_1*30
X
## [1] 4.8
              => Y = 0.16X;X = 30 => Y = 0.16⋅30 = 4.8