Project-1
pdf
School
Foothill College *
*We aren’t endorsed by this school
Course
103
Subject
Statistics
Date
Jan 9, 2024
Type
Pages
10
Uploaded by ElderFreedomSeahorse
Project 1 | Group 76
Joey Liu, Noemi Loera, Dale Kim
2023-10-15
library
(AER)
## Loading required package: car
## Loading required package: carData
## Loading required package: lmtest
## Loading required package: zoo
##
## Attaching package: ’zoo’
## The following objects are masked from ’package:base’:
##
##
as.Date, as.Date.numeric
## Loading required package: sandwich
## Loading required package: survival
data
(
"MurderRates"
)
summary
(MurderRates
$
income)
##
Min. 1st Qu.
Median
Mean 3rd Qu.
Max.
##
0.760
1.550
1.830
1.781
2.070
2.390
library
(lmtest)
library
(leaps)
library
(HH)
## Loading required package: lattice
## Loading required package: grid
## Loading required package: latticeExtra
1
## Loading required package: multcomp
## Loading required package: mvtnorm
## Loading required package: TH.data
## Loading required package: MASS
##
## Attaching package: ’TH.data’
## The following object is masked from ’package:MASS’:
##
##
geyser
## Loading required package: gridExtra
##
## Attaching package: ’HH’
## The following objects are masked from ’package:car’:
##
##
logit, vif
summary
(MurderRates
$
income)
##
Min. 1st Qu.
Median
Mean 3rd Qu.
Max.
##
0.760
1.550
1.830
1.781
2.070
2.390
hist
(MurderRates
$
income,
main =
"Income Histogram"
)
2
Income Histogram
MurderRates$income
Frequency
1.0
1.5
2.0
0
2
4
6
8
10
boxplot
(MurderRates
$
income)
3
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
1.0
1.5
2.0
5
regsub
<-
regsubsets
(rate
~
.,
method =
"exhaustive"
,
nbest =
2
,
data =
MurderRates)
summaryHH
(regsub)
##
model p
rsq rss adjr2
cp
bic stderr
## 1
s 2 0.588 353 0.578 18.40 -31.4
2.90
## 2
n 2 0.560 377 0.550 22.27 -28.6
2.99
## 3
n-s 3 0.675 278 0.659
8.01 -38.1
2.61
## 4
t-n 3 0.641 308 0.623 12.88 -33.7
2.74
## 5
t-n-s 4 0.705 253 0.683
5.81 -38.6
2.51
## 6
c-n-s 4 0.698 259 0.675
6.84 -37.5
2.54
## 7
c-t-n-s 5 0.729 232 0.701
4.43 -38.5
2.44
## 8
t-i-n-s 5 0.711 247 0.682
6.89 -35.8
2.52
## 9
c-t-i-n-s 6 0.736 226 0.701
5.38 -35.9
2.44
## 10
c-e-t-n-s 6 0.730 231 0.695
6.25 -34.9
2.47
## 11
c-t-i-l-n-s 7 0.744 219 0.703
6.22 -33.5
2.43
## 12
c-e-t-i-n-s 7 0.740 223 0.697
6.88 -32.7
2.46
## 13 c-e-t-i-l-n-s 8 0.746 218 0.696
8.00 -30.0
2.46
##
## Model variables with abbreviations
##
model
## s
southernyes
## n
noncauc
## n-s
noncauc-southernyes
## t-n
time-noncauc
4
## t-n-s
time-noncauc-southernyes
## c-n-s
convictions-noncauc-southernyes
## c-t-n-s
convictions-time-noncauc-southernyes
## t-i-n-s
time-income-noncauc-southernyes
## c-t-i-n-s
convictions-time-income-noncauc-southernyes
## c-e-t-n-s
convictions-executions-time-noncauc-southernyes
## c-t-i-l-n-s
convictions-time-income-lfp-noncauc-southernyes
## c-e-t-i-n-s
convictions-executions-time-income-noncauc-southernyes
## c-e-t-i-l-n-s convictions-executions-time-income-lfp-noncauc-southernyes
##
## model with largest adjr2
## 11
##
## Number of observations
## 44
south
<-
lm
(rate
~
time
+
noncauc
+
southern,
data =
MurderRates)
summary
(south)
##
## Call:
## lm(formula = rate ~ time + noncauc + southern, data = MurderRates)
##
## Residuals:
##
Min
1Q
Median
3Q
Max
## -4.5143 -1.5177 -0.1934
1.4288
6.7320
##
## Coefficients:
##
Estimate Std. Error t value Pr(>|t|)
## (Intercept)
4.419658
1.232067
3.587 0.000901 ***
## time
-0.014227
0.007091
-2.006 0.051600 .
## noncauc
16.256184
4.719997
3.444 0.001358 **
## southernyes
3.548793
1.204250
2.947 0.005333 **
## ---
## Signif. codes:
0 ’***’ 0.001 ’**’ 0.01 ’*’ 0.05 ’.’ 0.1 ’ ’ 1
##
## Residual standard error: 2.514 on 40 degrees of freedom
## Multiple R-squared:
0.7049, Adjusted R-squared:
0.6828
## F-statistic: 31.85 on 3 and 40 DF,
p-value: 1.092e-10
#Ask for clarification when comparing the two
The Rˆ2 for (3) is 0.7459. When compared to (south), it is 0.7049. (3) has a higher Rˆ2 which indicates that
(3) is a better fit of the overall model. However, this could explain (south) to majorly be the explanatory
variable. #Ask for clarification when comparing the two 6.
region
<-
ifelse
(MurderRates
$
southern
==
"yes"
,
1
,
0
)
newReg
<-
lm
(rate
~
time
+
noncauc
+
region,
data =
MurderRates)
plot
(south,
main =
"Plot of South"
)
5
2
4
6
8
10
12
14
-4
-2
0
2
4
6
8
Plot of South
Fitted values
Residuals
lm(rate ~ time + noncauc + southern)
Residuals vs Fitted
1
37
28
6
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
-2
-1
0
1
2
-2
-1
0
1
2
3
Plot of South
Theoretical Quantiles
Standardized residuals
lm(rate ~ time + noncauc + southern)
Q-Q Residuals
1
37
28
7
2
4
6
8
10
12
14
0.0
0.5
1.0
1.5
Plot of South
Fitted values
Standardized residuals
lm(rate ~ time + noncauc + southern)
Scale-Location
1
37
28
8
0.00
0.05
0.10
0.15
0.20
0.25
-2
-1
0
1
2
3
Plot of South
Leverage
Standardized residuals
lm(rate ~ time + noncauc + southern)
Cook's distance
0.5
0.5
1
Residuals vs Leverage
1
43
35
We can see that there is a pattern in the residuals, and they are portraying a cone shape. Further indicating
that the regression is heteroskedastic.
This implies that it is violating Assumption 3 of multiple linear
models: homoskedasticity.
7.
The Reset Hypothesis Test;
H
0
:
β
4
= 0
and
β
5
= 0
versus
H
1
:
β
4
̸
= 0
and/or
β
5
̸
= 0
resettest
(newReg)
##
##
RESET test
##
## data:
newReg
## RESET = 1.1266, df1 = 2, df2 = 38, p-value = 0.3347
Since the p-value is 0.3347, it is greater than the significant value
α
= 0.05. This implies that we fail to
reject the null, that our model is correctly specified.
8.
reg2
<-
lm
(rate
~
convictions
+
executions
+
time
+
income
+
lfp
+
noncauc
+
region,
data =
MurderRates)
#GQ Test to test for Heteroskedasticity
gqtest
(reg2,
point =
0.5
,
alternative=
"greater"
,
order.by =
MurderRates
$
convictions)
9
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
##
##
Goldfeld-Quandt test
##
## data:
reg2
## GQ = 0.32275, df1 = 14, df2 = 14, p-value = 0.9787
## alternative hypothesis: variance increases from segment 1 to 2
#Ask which X(explanatory variable) corresponds with order.by
Since the p-value of the GQ Test is 0.9787, we fail to reject that the variances differ from the two sub-models,
implying that it is heteroskedastic.
10
Related Documents
Related Questions
A ALEKS - Ragda Al grably - Math
A My Courses - alamo.edu
A Announcements: MATH-0410-06 X
9 Course Syllabus
->
A www-awn.aleks.com/alekscgi/x/Isl.exe/1o_u-lgNslkasNW8D8A9PVVI01V9oeUqDmh-NagiMOwhrIRGiZQbtxgtCBBLwHKegUuo-f0Hozh
->
Apps
O REMAX INTEGRITY wjC ugäall yarlalI
My Courses - alam..
4 Sycamore Campus.
Math 410 Midterm Exam
Time Remainin
Question 30 of 30 (2 points)
Question Attempt: 1 of 1
18
19
20
21
22
23
24
= 25
26
Each of 8 students reported the number of movies they saw in the past year. This is what they reported:
10, 16, 16, 16, 18, 20, 9, 8
Find the mean and median number of movies that the students saw.
If necessary, round your answers to the nearest tenth.
Mean: || movies
Median: movies
O 2021 McGraw-Hill Educ
Type here to search
2.
12
ts
17
ho
144
6
50
7 V
8 A
99
M.
R
立
arrow_forward
I need the answers for A through C
arrow_forward
b Explain in words why there are 9 x
C Explain In Words Why There Are x+
e Assignment: Section 2A Homew X
P Do Homework - Section 2A Hon x
A https://www.mathxl.com/Student/PlayerHomework.aspx?homeworkld35875211928&questionld=18&flushed=false
MAT-143-2021SP-Simpson-HY Quantitative Literacy (Jan to May)
Homework: Section 2A Homework
7 of 36 (7 complete)
Score: 0.75 of1 pt
2.A.5
Explain in words why there are 9 square feet in 1 square yard and 27 cubic feet in 1 cubic yard. Then describe generally how to find conversion factors involving squares or cubes
Why are there 9 square feet in 1 square yard?
O A. Asquare floor with area of 9 square feet fits exactly 9 square tiles whose area is 1 square yard.
O B. Asquare floor with area of 1 square yard fits exactly 9 square tiles whose length on each side is 9 feet.
OC. Since there are 9 feet in 1 yard, there must also be 9 square feet in 1 square yard.
D. A square floor with area of 1square yard fits exactly 9 square tiles whose area is 1…
arrow_forward
Cr te Can pus
Assignmen: List
Big deas Math
S INILGRATED MATHE M
bigideasmath.com
ocoms 2.org bockmarks
Inbox aarc192342.
S AMERICAN LIT & C.
S CLRAMICS || MRH
S CHEMISTRY: MRH
INTEGRATED VAL
S US HISTORY L M
The table shows the heights y (in centimeters) of a plant after x weeks. Use the table to complete the statements.
X 0 6 12
y 10 13 16
An equation in slope-intercept form of the line that represents the height y (in centimeters) of the plant after x weeks is
O of 8 answe
PREV
3.
4
NEXT
Sign out
US
2.
arrow_forward
C Clever | Portal
A ALEKS - DARREN HARRIS - Lawc X
+
i www-awa.aleks.com/alekscgi/x/IsLexe/1o_u-lgNslkr78P3JH-UgLUdxlcUe84Tp2eqtVT3Kk4hS-xmWhf4YRmTD01-YICBGUe3Lc4GhtAPjvcnlj8jprAuQn3nLh)XYAFV20p
Law of Sine HW
Question 3 of 12 (1 point) | Question Attempt: 1 of Unlimited
DARREN
v1
v 12
Mountain officials want to build a new ski lift from B to C, as shown in the figure below. The distance from A to C is 1530 feet. They measure angle DAC to be
31° and angle DBC to be 19°. What is the distance from A to B ? Round your answer to the nearest tenth of a foot.
| feet
1530 A.
31°
Check
Save For Later
Submit Assignment
2021 McGraw-H Education. Al Rghts Reserved Terms of Ue Piecy Accessiblty
9:06 PM
O Type here to search
+ ** * +
2.
4.
P
Q
E
R
LLLL
F
G
H
K
caps lock
pause
shift 1
C
alt
alt
ctri
in
arrow_forward
Please address parts (a), (b), and (c)
arrow_forward
Please open the attach files.
Problem a, b ,c ,d, f, h, i j ,p
Thank you!
arrow_forward
help please answer in text form with proper workings and explanation for each and every part and steps with concept and introduction no AI no copy paste remember answer must be in proper format with all working
arrow_forward
nooka Student Links
A To-do
* Edpuzzle
t Fatima Khan -Gall - Student
b docs.google.com/spreadsheets/d/1dWslroQA1915ikZQDL8Fg6r6Fyyzb9n0rA-CEEKWSU8/edit#gid3881570761
ch/Zoom/Enrichment
vMinooka Linksv
first day invite- Go.
Fatima Khan - Gall - Student_Ind and Dependent Probability Pixel Art
File Edit View
Insert Format Data
Tools Add-ons Help
Last edit was yesterday at 12:55 PM
ア
100%
.0 .00 123 -
Default (Ari. -
BISA
.田
10
| fx
A
B
E
Independent and Dependent Probability. For fraction, answers must be simplified, for
decimal round to the hundredth place, for percents round to the nearest whole
number.
1. Two seniors, one from each government class are randomly selected to travel to Washington,
D.C. Wes is in a class of 18 students and Maureen is in a class of 20 students. Find the
probability that both Wes and Maureen will be selected. Answer as simplified fraction.
alagn of 38
arrow_forward
Help!!
arrow_forward
E Allison McCray -SampM - Google X
A Meet - emc-pnvw-ioi
A USATestprep, LLC-Online State X
/document/d/1tTZST3GlyH1Y-0cSoc7cTh3IYgBmFpyJ0vsAcHkB-1w/edit
OM * D O
Format Tools Add-ons Help
Last edit was 8 hours ago
Normal text
Arial
BIUA
E E = =
11
三
You and a group of friends want to know how many students in your school
prefer pop music. There are 840 students in your school. Each person in
the group randomly surveys 20 students. The table shows the results.
rill
Favorite Type of Music
Country
Pop
Rock
Rap
You
13
4
Friend A
3
7.
Friend B
4
10
Friend C
5
10
4.
Friend D
3
a. Use each sample to make an estimate for the number of students in
your school who prefer pop music.
In your sample, 13 out of 20, or 65% of the students chose pop music.
So, you can estimate that 0.65(840)= 546 students in your school prefer
pop music. Make estimates for the other samples.
You
Friend A
Friend B
Friend C
Friend D
Estimate
546
336
420
420
378
So, the estimates are that 336, 378, 420, 420, and 546…
arrow_forward
How do i find the occupancy rate for multiple lots? This spreadsheets contains more lots than given. I only provided are part of lot 1 and a part of lot 2 because the file is too large. They all run together in one file and need the occupancy rate which is column D on my spreadsheet.
LotCode
LotCapacity
LotOccupancy
OccupancyRate
TimeStamp
Day
Lot01
863
174
11/20/2016 8:01
Sunday
Lot01
863
179
11/20/2016 8:27
Sunday
Lot01
863
189
11/20/2016 9:01
Sunday
Lot01
863
197
11/20/2016 9:27
Sunday
Lot01
863
226
11/20/2016 10:01
Sunday
Lot01
863
247
11/20/2016 10:27
Sunday
Lot01
863
331
11/20/2016 11:01
Sunday
Lot01
863
400
11/20/2016 11:27
Sunday
Lot01
863
469
11/20/2016 12:01
Sunday
Lot01
863
510
11/20/2016 12:34
Sunday
Lot01
863
594
11/20/2016 13:07
Sunday
Lot01
863
618
11/20/2016 13:27
Sunday
Lot01
863
637
11/20/2016 14:01
Sunday
Lot01
863
655
11/20/2016 14:27
Sunday
Lot01
863
634
11/20/2016 15:01
Sunday
Lot01
863
597…
arrow_forward
SMIL06 COmmunication
C Infin te Campus
Assignment List
Big ideas Math
S INTEGRATED MATHI M
bigideasmath.comMRL public/app//student/assessmentisPlayerWindow-true assignmentld-ee963c21 4756 15159409 2
X
K
adams12.org bookmarks
M Inbox aarc192342
S AMERICAN LIT & C.
S CERAMIÇS II MRH
S CHEMISTRY: MRH
O INTEGRATED MAT
s US HISTORY /IL M.
The table shows the amounts y (in tons) of waste left in a landfill after x months of waste relocation. Use the table to complete
the statements.
х о
12
y 20 16 12
An equation in slope-intercept form of the line that represents the amount y (in tons) of waste left in the landfill after x
months is
The slope represents a rate of
ton(s) per month.
O of 8 answered
PREV
4
6
8.
SUBMIT
Sign out
US 8:06
arrow_forward
P Do Homework - 2.3 Venn Diagrams & Set Operations - Google Chrome
envellum.ecollege.co
mathxl.com/Student/PlayerHomework.aspx?homeworkld%36195
MUc Canvas
Math 1332 Spring 2022
sch
Homework: 2.3 Venn Diagrams
& Set Operations
Find the set (A n c)'.
U= {1, 2, 3, 4, 5, 6, 7, 8}
A = {2, 4, 7, 8}
C= {(3, 4, 5, 7, 8}
GE
Select the correct choice below and, if necessary, fill in the answer box
O A. (AnC)' = { } (Use a comma to separate answers as needed
%3D
B. (AnC)' is the empty set.
arrow_forward
AutoSave
Last assignment-2 - Saved to this PC -
O Search
ff
Johnson, Joshua D.
JJ
File
Home
Insert
Design
Layout
References
Mailings
Review
View
Help
A Share
P Comments
X Cut
O Find v
Arial
12 - A A Aa v A
AаBЬСcDd AaBЬСcDd AaBbC AaBbСсС Аав АавЬСcD AаBЬСcDd AaBbCcDd
E Copy
E Replace
Paste
1 Normal
1 No Spac. Heading 1 Heading 2
Title
Dictate
Editor
V Format Painter
B IU v ab x, x A vevA v
Subtitle
Subtle Em.. Emphasis
A Select v
Clipboard
Font
Paragraph
Styles
Editing
Voice
Editor
e. the model has no usefulness because R squared is very small.
10. A large national bank charges local companies for using their services. A
bank official reported the results of a regression analysis designed to predict the bank's
charges (Y) measured in dollars per month for services to local companies against the
company's sales revenues (X) in millions of dollars. Data for 21 companies follows:
Y hat = -2700 + 20 X with a two-tailed p value equal to 0.034. The interpretation of the
p-value for testing…
arrow_forward
{X € P({1,2,3}) : 2 e X}
arrow_forward
Name the four components of a mathematical system
arrow_forward
need help to do this question
arrow_forward
Do what is requested in sections c and e (which are the only ones that are not answered)Note: Put all the procedure and argumentsNote2: 2 images are attached since the first one explains the problem and the second one asks for data.
Note3: I had already uploaded it before but the answers they uploaded are wrong :(
arrow_forward
Help!
arrow_forward
CONTROL PANEL-
BRIDGE RAIL
HOIST
-TROLLEY
TROLLEY BUMPER
-BRIDGE DRIVE
END TRUCK-
RUNWAY BEAM-
END TRUCK BUMPER
-RUNWAY RAIL
TROLLEY DRIVE
TROLLEY END STOP
-CONDUCTOR BAR
LPENDANT TRACK
TROLLEY CONDUCTOR
TRACK
-WIRE ROPE
PENDANT FESTOONING
TROLLEY FESTOONING
-PENDANT CABLE
-HOOK BLOCK
PENDANT
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Mathematics For Machine Technology
Advanced Math
ISBN:9781337798310
Author:Peterson, John.
Publisher:Cengage Learning,
Related Questions
- A ALEKS - Ragda Al grably - Math A My Courses - alamo.edu A Announcements: MATH-0410-06 X 9 Course Syllabus -> A www-awn.aleks.com/alekscgi/x/Isl.exe/1o_u-lgNslkasNW8D8A9PVVI01V9oeUqDmh-NagiMOwhrIRGiZQbtxgtCBBLwHKegUuo-f0Hozh -> Apps O REMAX INTEGRITY wjC ugäall yarlalI My Courses - alam.. 4 Sycamore Campus. Math 410 Midterm Exam Time Remainin Question 30 of 30 (2 points) Question Attempt: 1 of 1 18 19 20 21 22 23 24 = 25 26 Each of 8 students reported the number of movies they saw in the past year. This is what they reported: 10, 16, 16, 16, 18, 20, 9, 8 Find the mean and median number of movies that the students saw. If necessary, round your answers to the nearest tenth. Mean: || movies Median: movies O 2021 McGraw-Hill Educ Type here to search 2. 12 ts 17 ho 144 6 50 7 V 8 A 99 M. R 立arrow_forwardI need the answers for A through Carrow_forwardb Explain in words why there are 9 x C Explain In Words Why There Are x+ e Assignment: Section 2A Homew X P Do Homework - Section 2A Hon x A https://www.mathxl.com/Student/PlayerHomework.aspx?homeworkld35875211928&questionld=18&flushed=false MAT-143-2021SP-Simpson-HY Quantitative Literacy (Jan to May) Homework: Section 2A Homework 7 of 36 (7 complete) Score: 0.75 of1 pt 2.A.5 Explain in words why there are 9 square feet in 1 square yard and 27 cubic feet in 1 cubic yard. Then describe generally how to find conversion factors involving squares or cubes Why are there 9 square feet in 1 square yard? O A. Asquare floor with area of 9 square feet fits exactly 9 square tiles whose area is 1 square yard. O B. Asquare floor with area of 1 square yard fits exactly 9 square tiles whose length on each side is 9 feet. OC. Since there are 9 feet in 1 yard, there must also be 9 square feet in 1 square yard. D. A square floor with area of 1square yard fits exactly 9 square tiles whose area is 1…arrow_forward
- Cr te Can pus Assignmen: List Big deas Math S INILGRATED MATHE M bigideasmath.com ocoms 2.org bockmarks Inbox aarc192342. S AMERICAN LIT & C. S CLRAMICS || MRH S CHEMISTRY: MRH INTEGRATED VAL S US HISTORY L M The table shows the heights y (in centimeters) of a plant after x weeks. Use the table to complete the statements. X 0 6 12 y 10 13 16 An equation in slope-intercept form of the line that represents the height y (in centimeters) of the plant after x weeks is O of 8 answe PREV 3. 4 NEXT Sign out US 2.arrow_forwardC Clever | Portal A ALEKS - DARREN HARRIS - Lawc X + i www-awa.aleks.com/alekscgi/x/IsLexe/1o_u-lgNslkr78P3JH-UgLUdxlcUe84Tp2eqtVT3Kk4hS-xmWhf4YRmTD01-YICBGUe3Lc4GhtAPjvcnlj8jprAuQn3nLh)XYAFV20p Law of Sine HW Question 3 of 12 (1 point) | Question Attempt: 1 of Unlimited DARREN v1 v 12 Mountain officials want to build a new ski lift from B to C, as shown in the figure below. The distance from A to C is 1530 feet. They measure angle DAC to be 31° and angle DBC to be 19°. What is the distance from A to B ? Round your answer to the nearest tenth of a foot. | feet 1530 A. 31° Check Save For Later Submit Assignment 2021 McGraw-H Education. Al Rghts Reserved Terms of Ue Piecy Accessiblty 9:06 PM O Type here to search + ** * + 2. 4. P Q E R LLLL F G H K caps lock pause shift 1 C alt alt ctri inarrow_forwardPlease address parts (a), (b), and (c)arrow_forward
- Please open the attach files. Problem a, b ,c ,d, f, h, i j ,p Thank you!arrow_forwardhelp please answer in text form with proper workings and explanation for each and every part and steps with concept and introduction no AI no copy paste remember answer must be in proper format with all workingarrow_forwardnooka Student Links A To-do * Edpuzzle t Fatima Khan -Gall - Student b docs.google.com/spreadsheets/d/1dWslroQA1915ikZQDL8Fg6r6Fyyzb9n0rA-CEEKWSU8/edit#gid3881570761 ch/Zoom/Enrichment vMinooka Linksv first day invite- Go. Fatima Khan - Gall - Student_Ind and Dependent Probability Pixel Art File Edit View Insert Format Data Tools Add-ons Help Last edit was yesterday at 12:55 PM ア 100% .0 .00 123 - Default (Ari. - BISA .田 10 | fx A B E Independent and Dependent Probability. For fraction, answers must be simplified, for decimal round to the hundredth place, for percents round to the nearest whole number. 1. Two seniors, one from each government class are randomly selected to travel to Washington, D.C. Wes is in a class of 18 students and Maureen is in a class of 20 students. Find the probability that both Wes and Maureen will be selected. Answer as simplified fraction. alagn of 38arrow_forward
- Help!!arrow_forwardE Allison McCray -SampM - Google X A Meet - emc-pnvw-ioi A USATestprep, LLC-Online State X /document/d/1tTZST3GlyH1Y-0cSoc7cTh3IYgBmFpyJ0vsAcHkB-1w/edit OM * D O Format Tools Add-ons Help Last edit was 8 hours ago Normal text Arial BIUA E E = = 11 三 You and a group of friends want to know how many students in your school prefer pop music. There are 840 students in your school. Each person in the group randomly surveys 20 students. The table shows the results. rill Favorite Type of Music Country Pop Rock Rap You 13 4 Friend A 3 7. Friend B 4 10 Friend C 5 10 4. Friend D 3 a. Use each sample to make an estimate for the number of students in your school who prefer pop music. In your sample, 13 out of 20, or 65% of the students chose pop music. So, you can estimate that 0.65(840)= 546 students in your school prefer pop music. Make estimates for the other samples. You Friend A Friend B Friend C Friend D Estimate 546 336 420 420 378 So, the estimates are that 336, 378, 420, 420, and 546…arrow_forwardHow do i find the occupancy rate for multiple lots? This spreadsheets contains more lots than given. I only provided are part of lot 1 and a part of lot 2 because the file is too large. They all run together in one file and need the occupancy rate which is column D on my spreadsheet. LotCode LotCapacity LotOccupancy OccupancyRate TimeStamp Day Lot01 863 174 11/20/2016 8:01 Sunday Lot01 863 179 11/20/2016 8:27 Sunday Lot01 863 189 11/20/2016 9:01 Sunday Lot01 863 197 11/20/2016 9:27 Sunday Lot01 863 226 11/20/2016 10:01 Sunday Lot01 863 247 11/20/2016 10:27 Sunday Lot01 863 331 11/20/2016 11:01 Sunday Lot01 863 400 11/20/2016 11:27 Sunday Lot01 863 469 11/20/2016 12:01 Sunday Lot01 863 510 11/20/2016 12:34 Sunday Lot01 863 594 11/20/2016 13:07 Sunday Lot01 863 618 11/20/2016 13:27 Sunday Lot01 863 637 11/20/2016 14:01 Sunday Lot01 863 655 11/20/2016 14:27 Sunday Lot01 863 634 11/20/2016 15:01 Sunday Lot01 863 597…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Mathematics For Machine TechnologyAdvanced MathISBN:9781337798310Author:Peterson, John.Publisher:Cengage Learning,

Mathematics For Machine Technology
Advanced Math
ISBN:9781337798310
Author:Peterson, John.
Publisher:Cengage Learning,