Question

In: Statistics and Probability

Use simulation in SAS. FICO scores nationally have an average of 640 with a standard deviation...

Use simulation in SAS.

FICO scores nationally have an average of 640 with a standard deviation of 60. If you simulated the credit scores of 10,000 borrowers, what percent of FICO scores are less than 500? Greater than 850? Find the mean and standard deviation of scores that meet these conditions.

Solutions

Expert Solution

Percent of Scores less than 500 = 1.33%

Percent of Scores more than 850 = 0.03%

Mean of scores that are less than 500 479.5443

SD of scores that are less than 500 17.58796

Mean of scores that are greater than 850 861.4842

SD of scores that are greater than 850 6.193648

Note: All the above values are based on one sample only.

SAS is not available online. You can use this R-code and transform it into SAS code if you have it.

R-code:

set.seed(1)
y <- rnorm(10000, mean = 640, sd = 60)
count_1 = 0
count_2 = 0
list_1 = list()
list_2 = list()


for (i in y)
{
if(i<500)
{
list_1<-c(list_1,i)
count_1 = count_1 + 1
  
  
}
  
if(i>850)
{
list_2<-c(list_2,i)
count_2 = count_2 + 1
}
  
}

mean(as.numeric(list_1))
mean(as.numeric(list_2))

sd(as.numeric(list_1))
sd(as.numeric(list_2))


Related Solutions

Here is a list of five individual FICO credit scores. What is their average and standard...
Here is a list of five individual FICO credit scores. What is their average and standard deviation? 671 745 810 778 801 Widget Inc. Stock has the following probabilities of return. What is its mu and sigma? There is a 30% chance for a good economic outlook and the stock will increase by 25% There is a 40% chance for an okay economic outlook and the stock will increase by 5% There is a 30% chance for a bad economic...
SAT scores have an average of 1200 with a standard deviation of 60. a. For a...
SAT scores have an average of 1200 with a standard deviation of 60. a. For a sample of 36, what is the probability that the sample mean will be within 5 points of the mean? b. For a sample of 36, what is the probability that the sample mean will be with 10 points of the mean? c. For a sample of 100, what is the probability that the sample mean will be within 5 points of the mean? d....
1. The SAT test scores have an average value of 1200 with a standard deviation of...
1. The SAT test scores have an average value of 1200 with a standard deviation of 100. A random sample of 35 scores is selected for study. A) What is the shape, mean(expected value) and standard deviation of the sampling distribution of the sample mean for samples of size 35? B) What is the probability that the sample mean will be larger than 1235? C) What is the probability that the sample mean will fall within 25 points of the...
The SAT test scores have an average value of 1200 with a standard deviation of 100....
The SAT test scores have an average value of 1200 with a standard deviation of 100. A random sample of 35 scores is selected for the study. A) What are the shape, mean(expected value) and standard deviation of the sampling distribution of the sample mean for samples of size 35? B) What is the probability that the sample mean will be larger than 1235? C) What is the probability that the sample mean will fall within 25 points of the...
1. The SAT test scores have an average value of 1200 with a standard deviation of...
1. The SAT test scores have an average value of 1200 with a standard deviation of 105. A random sample of 35 scores is selected for study. A) What is the shape, mean(expected value) and standard deviation of the sampling distribution of the sample mean for samples of size 35? B) What is the probability that the sample mean will be larger than 1235? C) What is the probability that the sample mean will fall within 25 points of the...
Lenders primarily use the Fair Isaac Corporation (FICO) model to determine credit scores. FICO grades consumers...
Lenders primarily use the Fair Isaac Corporation (FICO) model to determine credit scores. FICO grades consumers on a 300- to 850-point range; a higher score indicates less risk to the lender. A score of 800 or higher is considered exceptional; 740 to 799 is very good; 670 to 739 is good; 580 to 669 is fair; and 579 or lower is poor. According to MyFICO.com your credit score can impact interest rates available to you as follows: FICO score APR...
the average scores of math students in a certain school is 75 with a standard deviation...
the average scores of math students in a certain school is 75 with a standard deviation of 8.1. one hundred students were randomly selected, and the average score was found to be 71. the director wants to know wether students have deteriorated. significance level is 0.01 1) the hypotheses are ? 2)Decision and conclusion ? 3) the critical value is ? 4) the test statistic is ?
The test scores for a math exam have a mean of 72 with a standard deviation...
The test scores for a math exam have a mean of 72 with a standard deviation of 8.5. Let the random variable X represent an exam score. a) Find the probability that an exam score is at most 80. (decimal answer, round to 3 decimal places) b) Find the probability that an exam score is at least 60. (decimal answer, round to 3 decimal places) c) Find the probability that an exam score is between 70 and 90. (decimal answer,...
IQ scores are scaled to have a mean of 100 and a standard deviation of 15....
IQ scores are scaled to have a mean of 100 and a standard deviation of 15. They are also supposed to follow a normal distribution. Suppose a random sample of 81 people are given IQ tests. Calculate the probability that the sample mean IQ is greater than 102.
The population of all verbal GRE scores are known to have a standard deviation of 8.5....
The population of all verbal GRE scores are known to have a standard deviation of 8.5. The UW Psychology department hopes to receive applicants with a verbal GRE scores over 210. This year, the mean verbal GRE scores for the 42 applicants was 212.79. Using a value of α = 0.05 is this new mean significantly greater than the desired mean of 210? a. Is this a one tailed or two tailed test? Why? b. Conduct the appropriate hypothesis test...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT