1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Sliva [168]
3 years ago
9

This problem uses the teengamb data set in the faraway package. Fit a model with gamble as the response and the other variables

as predictors. (a) Predict the amount that men with average (given the data) status, income and verbal score would gamble along with an appropriate 95% confidence interval for the mean amount. (b) Repeat the prediction for men with maximal values (for this data) of status, income and verbal score. Which confidence interval is wider and why is the result expected?
Mathematics
1 answer:
hichkok12 [17]3 years ago
4 0

Answer:

A. 95% confidence interval of gamble amount is (18.78277, 37.70227)

B. The 95% confidence interval of gamble amount is (42.23237, 100.3835)

C. 95% confidence interval of sqrt(gamble) is (3.180676, 4.918371)

D. The predicted bet value for a woman with status = 20, income = 1, verbal = 10, which shows a negative result and does not fit with the data, so it is inferred that model (c) does not fit with this information

Step-by-step explanation:

to)

We will see a code with which it can be predicted that an average man with income and verbal score maintains an appropriate 95% CI.

attach (teengamb)

model = lm (bet ~ sex + status + income + verbal)

newdata = data.frame (sex = 0, state = mean (state), income = mean (income), verbal = mean (verbal))

predict (model, new data, interval = "predict")

lwr upr setting

28.24252 -18.51536 75.00039

we can deduce that an average man, with income and verbal score can play 28.24252 times

using the following formula you can obtain the confidence interval for the bet amount of 95%

predict (model, new data, range = "confidence")

lwr upr setting

28.24252 18.78277 37.70227

as a result, the confidence interval of 95% of the bet amount is (18.78277, 37.70227)

b)

Run the following command to predict a man with maximum values ​​for status, income, and verbal score.

newdata1 = data.frame (sex = 0, state = max (state), income = max (income), verbal = max (verbal))

predict (model, new data1, interval = "confidence")

lwr upr setting

71.30794 42.23237 100.3835

we can deduce that a man with the maximum state, income and verbal punctuation is going to bet 71.30794

The 95% confidence interval of the bet amount is (42.23237, 100.3835)

it is observed that the confidence interval is wider for a man in maximum state than for an average man, it is an expected data because the bet value will be higher than the person with maximum state that the average what you carried s that simultaneously The, the standard error and the width of the confidence interval is wider for maximum data values.

(C)

Run the following code for the new model and predict the answer.

model1 = lm (sqrt (bet) ~ sex + status + income + verbal)

we replace:

predict (model1, new data, range = "confidence")

lwr upr setting

4,049523 3,180676 4.918371

The predicted sqrt (bet) is 4.049523. which is equal to the bet amount is 16.39864.

The 95% confidence interval of sqrt (wager) is (3.180676, 4.918371)

(d)

We will see the code to predict women with status = 20, income = 1, verbal = 10.

newdata2 = data.frame (sex = 1, state = 20, income = 1, verbal = 10)

predict (model1, new data2, interval = "confidence")

lwr upr setting

-2.08648 -4.445937 0.272978

The predicted bet value for a woman with status = 20, income = 1, verbal = 10, which shows a negative result and does not fit with the data, so it is inferred that model (c) does not fit with this information

You might be interested in
Emily invested in Google Stock (in the thousands of dollars) between the years 2000- 2013. The value of the stock can be modeled
jek_recluse [69]
To find it, evaluate it at the endpoints and the vertex
in form
f(x)=ax²+bx+c
the x value of the vertex is -b/2a


given
c(t)=1t²-10t+76
x value of vertex is -(-10)/1=10


evaluate c(0) and c(13) and c(10)
c(0)=76
c(13)=115
c(10)=76

it reached minimum in 2000 and 2010
porbably teacher wants 2010
the min value is $76
7 0
3 years ago
Please help I will mark Brainly
Bas_tet [7]

okay so you would go down to -8, then the slope would be 4/1 which means to go up four and then over one. then you have the line.


i hope this helps you!

8 0
3 years ago
Read 2 more answers
Juan invest $3700 in a simple interest account at a rate of 4% for 15 years
OleMash [197]

<em><u>Question:</u></em>

Juan Invest $3700 In A Simple Interest Account At A Rate Of 4% For 15 Years. How Much Money Will Be In The Account After 15 Years?

<em><u>Answer:</u></em>

There will be $ 5920 in account after 15 years

<em><u>Solution:</u></em>

<em><u>The simple interest is given by formula:</u></em>

S.I = \frac{p \times n \times r }{100}

Where,

p is the principal

n is number of years

r is rate of interest

From given,

p = 3700

r = 4 %

t = 15 years

Therefore,

S.I = \frac{3700 \times 4 \times 15 }{100}\\\\S.I = 37 \times 4 \times 15\\\\S.I = 2220

<em><u>How Much Money Will Be In The Account After 15 Years?</u></em>

Total money = principal + simple interest

Total money = 3700 + 2220

Total money = 5920

Thus there will be $ 5920 in account after 15 years

8 0
3 years ago
A random sample of 12 men age 60-65 has a mean blood pressure of 142. 3 mmHg and a standard deviation of 20.8 mmHg. Construct a
Over [174]

Answer:

The 99% confidence interval = (126.93,157.67)

Step-by-step explanation:

The formula for Confidence Interval =

Mean ± z × Standard deviation /√n

Mean = 142. 3 mmHg

Standard deviation = 20.8 mmHg.

n = 12

Z score for 99% confidence interval = 2.56

Confidence Interval =

142.3 ± 2.56 × 20.8/√12

142.3 ± 2.56 × 6.0044427996

142.3 ± 15.371373567

Confidence Interval

= 142.3 - 15.371373567

= 126.92862643

≈ 126.93

142.3 + 15.371373567

= 157.67137357

≈ 157.67

Therefore, the 99% confidence interval = (126.93,157.67)

3 0
3 years ago
Kyle bought some $12 shirts. Sally bought some $15 shirts. They each spent less than $200, but they both spent the same amount.
stira [4]

Answer:

sorry dont know answer.....

8 0
3 years ago
Other questions:
  • If the area of triangle is 1200 sq m and its length is 60 m , find the breadth .
    6·1 answer
  • I need help please :( i really need help
    9·1 answer
  • Using Desmos.com or the Pythagorean Theorem find the distance between points A and B rounded to the nearest tenth.
    9·1 answer
  • This is a value next to a variable what is it called
    11·1 answer
  • You're reproducing a 5 cm x 5 cm picture on a wall at a ratio of 1/3. How large is the surface you're reproducing it on?
    9·1 answer
  • If i am right in this problem, How can i show my work for this equation?
    12·2 answers
  • Malia and her sister walk at a constant rate of 4 miles per hour.
    8·1 answer
  • 50 POINTS AND BRAINLIEST
    7·2 answers
  • Calculate the simple interest for amount below.<br> $5500 at 5% for 6.5 years
    8·2 answers
  • A bakery made 9 cakes using 3 bags of flour. The bakery uses the same relationship between cakes made and the amount of flour us
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!