What is 2 + 2? What is $5 + 5$? What is the letter after B? Type a vowel Draw 10 random numbers from a normal distribution with a mean of 3 and SD of 2: Complete the following function for returning the scaled values of a vector, `v`.
scale_function <- function(v) { 
  the_mean <- ()
  the_sd <- sd()
  
  (v  the_mean )  the_sd
}
How would you model a distribution of coin flips?