Exam 1 (lab 4)
pdf
keyboard_arrow_up
School
Drexel University *
*We aren’t endorsed by this school
Course
410
Subject
Statistics
Date
Jan 9, 2024
Type
Pages
18
Uploaded by MegaOysterMaster676
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 1 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
Exam 1 (lab 4)
Mathew H
2023-10-18
library
(magrittr)
library
(formattable)
library
(LearningStats)
library
(knitr)
Question 1: CONFRIRMATION NEEDED
#Manual Rankings:
Pond ID: Ranking: _________ ________ 1 7 (tie) 2 10 3 6 4 7 (tie) 5 3 (tie) 6 5 7 1 (tie) 8 11 9 1 (tie) 10 3 (tie) 11 7
(tie)
#R rankings
bullfrogs=c(34,65,23,34,18,20,15,70,15,18,34)
rank(bullfrogs)
## [1] 8.0 10.0 6.0 8.0 3.5 5.0 1.5 11.0 1.5 3.5 8.0
##The ranking is the same, although R delineates ties by outputting a .5 value.
Question 2:
student_data=read.csv("/Users/mathabib/Documents/R files/Exam1/Student Data.csv")
malepulse=student_data$Pulse[1:77]
hist(malepulse,breaks=15,main="male pulses",col="blue",xlim=c(40,150),ylim=c(0,20),xl
ab="pulse")
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 2 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
femalepulse=student_data$Pulse[78:165]
hist(femalepulse,breaks=15,main="female pulses",col="pink",xlim=c(40,150),ylim=c(0,2
0),xlab="pulse")
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 3 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
## The distributions are not similar. While both seem to be centralized around a pulse of 80, the female
distribution is much more broad, with both lower minimums and higher maximums than are observed in the
male pulse graph.
Question 3:
bass=read.csv("/Users/mathabib/Documents/R files/Exam1/bass.csv")
bassL=bass$length.mm.
bins=seq(60,460,by=10)
hist(bassL,breaks=bins,main="frequency of bass lengths",col="green",xlim=c(50,550),xl
ab="lengths in mm")
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
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 4 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
#table
bins=seq(60,460,by=10)
cutbassL=cut(bassL,bins)
basstable=transform(table(cutbassL))
names(basstable)[1]="length in mm |"
names(basstable)[2]="Frequency"
formattable(basstable)%>%
kable("html",escape=F,caption="lengths of largemouth")
lengths of largemouth
length in mm |Frequency
(60,70]
2
(70,80]
0
(80,90]
1
(90,100]
1
(100,110]
0
(110,120]
3
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 5 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
(120,130]
1
(130,140]
1
(140,150]
0
(150,160]
1
(160,170]
2
(170,180]
6
(180,190]
3
(190,200]
9
(200,210]
5
(210,220]
1
(220,230]
0
(230,240]
2
(240,250]
3
(250,260]
2
(260,270]
2
(270,280]
0
(280,290]
4
(290,300]
3
(300,310]
4
(310,320]
8
(320,330]
6
(330,340]
4
(340,350]
4
(350,360]
2
(360,370]
5
(370,380]
2
(380,390]
2
(390,400]
3
(400,410]
2
(410,420]
3
(420,430]
0
(430,440]
2
(440,450]
0
(450,460]
1
Question 4:
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 6 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
#table
basscumulative=cumsum(table(cutbassL))
cumulativecolumn=transform(basscumulative)$X_data
cumulativebasstable=data.frame(basstable,cumulativecolumn)
names(cumulativebasstable)[1]="lengths in mm |"
names(cumulativebasstable)[2]="frequency |"
names(cumulativebasstable)[3]="cumulative frequency"
formattable(cumulativebasstable)%>%
kable("html",escape=F,caption="lengths of largemouth")
lengths of largemouth
lengths in mm |frequency |cumulative frequency
(60,70]
2
2
(70,80]
0
2
(80,90]
1
3
(90,100]
1
4
(100,110]
0
4
(110,120]
3
7
(120,130]
1
8
(130,140]
1
9
(140,150]
0
9
(150,160]
1
10
(160,170]
2
12
(170,180]
6
18
(180,190]
3
21
(190,200]
9
30
(200,210]
5
35
(210,220]
1
36
(220,230]
0
36
(230,240]
2
38
(240,250]
3
41
(250,260]
2
43
(260,270]
2
45
(270,280]
0
45
(280,290]
4
49
(290,300]
3
52
(300,310]
4
56
(310,320]
8
64
(320,330]
6
70
(330,340]
4
74
(340,350]
4
78
(350,360]
2
80
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
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 7 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
(360,370]
5
85
(370,380]
2
87
(380,390]
2
89
(390,400]
3
92
(400,410]
2
94
(410,420]
3
97
(420,430]
0
97
(430,440]
2
99
(440,450]
0
99
(450,460]
1
100
#histogram
hist(cumsum(table(cutbassL)),breaks=25,main="cumulative bass length frequency histogr
am",col="darkolivegreen",xlim=c(0,100),xlab="cumulative lengths")
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 8 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
#polygon
plot(cumsum(table(cutbassL)),xlab="Cumulative lengths",ylab="cumulative frequencies",
main="cumulative bass length frequency polygon")
polygon(c(0,cumsum(table(cutbassL)),0),col="darkolivegreen")
Question 5:
kingfisher=read.csv("/Users/mathabib/Documents/R files/Exam1/kingfisher.csv")
kingL=kingfisher$Bill_length
mean(kingL)
## [1] 55.69762
median(kingL)
## [1] 56.5
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 9 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
#mode
table(kingL)
## kingL
## 47 47.8 48 48.1 48.8 50.1 50.4 50.8 51 51.8 52.3 52.5 53.4 55.2 55.6 55.8 ## 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 ## 56 56.2 56.3 56.5 56.8 57.1 57.5 57.7 57.8 58 59.2 59.3 59.8 59.9 60.2 61.1 ## 1 1 1 2 3 1 1 1 1 1 2 2 1 1 1 1 ## 61.2 61.5 61.8 62.4 ## 1 1 1 1
## mode is 56.8 with 3 appearances
#range
range(kingL)[2]-range(kingL)[1]
## [1] 15.4
IQR(kingL)
## [1] 6.85
var(kingL)
## [1] 18.43097
sd(kingL)
## [1] 4.293131
#coeff var.
(sd(kingL))/(mean(kingL))
## [1] 0.07707925
boxplot(kingL,col="red",main="Kingfisher bill length",ylab="bill length")
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
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 10 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
Mean: 55.69762 Median: 56.5 Mode: 56.8 (3 occurrences) Range: 15.4 IQR: 6.85 Variance: 18.43097 SD:
4.293131 Coe
ffi
cient of Variation: 0.07707925
Question 6:
shell_L=c(95,105,115,125,135,145,155,165)
shellwt=c(4,10,9,6,9,3,5,1)
weighted.mean(shell_L,shellwt)
## [1] 123.5106
#The weighted mean comes out to 123.5106, which is very close to the actual computed mean of 123.6. The
wieghted mean is less than a tenth of a mm o
ff
of the computed mean.
Question 7:
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 11 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
mosquitofish=read.csv("/Users/mathabib/Documents/R files/Exam1/Mosquitofish(1).csv")
mmfish=mosquitofish$FishLength[1:854]
tenfish1=sample(mmfish,10,replace=F)
tenfish2=sample(mmfish,10,replace=F)
tenfish3=sample(mmfish,10,replace=F)
tenfish4=sample(mmfish,10,replace=F)
tenfish5=sample(mmfish,10,replace=F)
twentyfish1=sample(mmfish,20,replace=F)
twentyfish2=sample(mmfish,20,replace=F)
twentyfish3=sample(mmfish,20,replace=F)
twentyfish4=sample(mmfish,20,replace=F)
twentyfish5=sample(mmfish,20,replace=F)
thirtyfish1=sample(mmfish,30,replace=F)
thirtyfish2=sample(mmfish,30,replace=F)
thirtyfish3=sample(mmfish,30,replace=F)
thirtyfish4=sample(mmfish,30,replace=F)
thirtyfish5=sample(mmfish,30,replace=F)
#Tenfish
mean(tenfish1)
## [1] 24
sd(tenfish1)
## [1] 1.699673
mean(tenfish2)
## [1] 23.4
sd(tenfish2)
## [1] 2.412928
mean(tenfish3)
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 12 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
## [1] 22.4
sd(tenfish3)
## [1] 1.505545
mean(tenfish4)
## [1] 22.8
sd(tenfish4)
## [1] 2.347576
mean(tenfish5)
## [1] 23.3
sd(tenfish5)
## [1] 2.002776
#Twentyfish
mean(twentyfish1)
## [1] 24
sd(twentyfish1)
## [1] 3.077935
mean(twentyfish2)
## [1] 23.8
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
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 13 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
sd(twentyfish2)
## [1] 2.764436
mean(twentyfish3)
## [1] 24.55
sd(twentyfish3)
## [1] 3.103055
mean(twentyfish4)
## [1] 24.45
sd(twentyfish4)
## [1] 1.932411
mean(twentyfish5)
## [1] 23.7
sd(twentyfish5)
## [1] 2.792848
#Thirtyfish
mean(thirtyfish1)
## [1] 23.7
sd(thirtyfish1)
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 14 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
## [1] 2.718392
mean(thirtyfish2)
## [1] 22.96667
sd(thirtyfish2)
## [1] 2.918234
mean(thirtyfish3)
## [1] 23.6
sd(thirtyfish3)
## [1] 2.372253
mean(thirtyfish4)
## [1] 22.83333
sd(thirtyfish4)
## [1] 2.841604
mean(thirtyfish5)
## [1] 23.56667
sd(thirtyfish5)
## [1] 2.473073
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 15 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
The means and srandard deviations of the
samples are not the same as the population
mean and standard deviation. This is
because the sample has a much larger size,
and therefore has the possibility of having
significant outliers that can influence the
data. There is a low possibility of including
these outliers given the relatively small
sample size, so the disparities in mean and
sd are observed.
Question 8:
#A:
dbinom(0,25,.10)
## [1] 0.0717898
#B:
numblind=0:25
prob=dbinom(numblind,25,0.1)
blindtable=data.frame(numblind,prob)
names(blindtable)[1]="number of color blind people |"
names(blindtable)[2]="probability"
formattable(blindtable)%>%
kable("html",escape=F,caption="probability of being colorblind")
probability of being colorblind
number of color blind people |probability
0 0.0717898
1 0.1994161
2 0.2658881
3 0.2264973
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
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 16 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
4 0.1384150
5 0.0645937
6 0.0239236
7 0.0072150
8 0.0018038
9 0.0003786
10 0.0000673
11 0.0000102
12 0.0000013
13 0.0000001
14 0.0000000
15 0.0000000
16 0.0000000
17 0.0000000
18 0.0000000
19 0.0000000
20 0.0000000
21 0.0000000
22 0.0000000
23 0.0000000
24 0.0000000
25 0.0000000
Question 9:
wormspeel=c(0:10)
wormsweight=c(17,8,7,6,4,5,3,5,4,3,4)
wormsmean=weighted.mean(wormspeel,wormsweight)
wormsmean
## [1] 3.530303
#A:
n=17
wormprob=dpois(0:n,wormsmean)
wormprob
## [1] 2.929604e-02 1.034239e-01 1.825588e-01 2.148293e-01 1.896032e-01
## [6] 1.338713e-01 7.876772e-02 3.972485e-02 1.753009e-02 6.876283e-03
## [11] 2.427536e-03 7.790853e-04 2.292006e-04 6.224212e-05 1.569525e-05
## [16] 3.693933e-06 8.150440e-07 1.692560e-07
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 17 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
wormtotal=sum(wormprob)
#B:
wormtable=data.frame(0:n,wormprob)
names(wormtable)[1]="# of worms. |"
names(wormtable)[2]="Probability"
formattable(wormtable)%>%
kable("html",escape=F,caption="probability of being eels containing x number of wor
ms")
probability of being eels
containing x number of
worms
# of worms. |Probability
0 0.0292960
1 0.1034239
2 0.1825588
3 0.2148293
4 0.1896032
5 0.1338713
6 0.0787677
7 0.0397248
8 0.0175301
9 0.0068763
10 0.0024275
11 0.0007791
12 0.0002292
13 0.0000622
14 0.0000157
15 0.0000037
16 0.0000008
17 0.0000002
expectedworms=sum(0:n)*wormprob #expected Frequency values
actualworms=c(wormsweight,rep(0,n+1-length(wormsweight)))
wormtableb=data.frame(0:n,actualworms,expectedworms)
names(wormtableb)[1]="worms per eel"
names(wormtableb)[2]="observed frequency"
names(wormtableb)[3]="expected frequency"
wormtableb
10/26/23, 3
:
12 PM
Exam 1 (lab 4)
Page 18 of 18
file:///Users/mathabib/Documents/R%20files/Exam1/Exam1.html
## worms per eel observed frequency expected frequency
## 1 0 17 4.482294e+00
## 2 1 8 1.582385e+01
## 3 2 7 2.793150e+01
## 4 3 6 3.286889e+01
## 5 4 4 2.900928e+01
## 6 5 5 2.048231e+01
## 7 6 3 1.205146e+01
## 8 7 5 6.077902e+00
## 9 8 4 2.682104e+00
## 10 9 3 1.052071e+00
## 11 10 4 3.714130e-01
## 12 11 0 1.192000e-01
## 13 12 0 3.506769e-02
## 14 13 0 9.523044e-03
## 15 14 0 2.401374e-03
## 16 15 0 5.651718e-04
## 17 16 0 1.247017e-04
## 18 17 0 2.589617e-05
The observed and expected frequencies do not match up very well. This suggests that the data set does not
fit a poisson distribution very well.
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
Related Documents
Related Questions
Dogwes
O Do Homework - TMara Gilchrist - Google Chrome
i mathd.com/Student/PlayerHomework.aspx?homeworkld=574125327&questionld 9&flushed%-false&cld%3D6161404¢erwin=yes
T'Mara Gilchrist &
Mat 122 - 80 Fall 2020
Homework: Section 7.1 Homework
HW Score: 64%,
« 24 of 25 (17 complete) ▼
Score: 0 of 1 pt
E Question Help
Gen Interest 7.1.65
The table shows some trees that are in two city parks. Let U be the smallest possible set that includes all the trees listed, R be the set of trees in Riverside Park, and S be the set of trees in Sleepy Hollow Park. Find R
Riverside Park
Birch, b
Dogwood, d
Sleepy Hollow Park
Elm, e
Willow, w
Birch, b
ucamore s
Pina P
Em,
Oak, o
Dogwood, d
Use the lowercase letters in the table to list the elements in R'
R'=O
(Use a comma to separate answers as needed.)
nswer box and then click Check Answer
Clear A
Check Answes
a
arrow_forward
A nutritionist collects the weight of college students in the first semester, then again in the second semester. What is the best way to visually present this data?
a) Line Graphs
b) Scatterplots
c) Bar Graphs
d) Pie Charts
arrow_forward
M
ui/v2/assessment-player/index.html?launchld=3cb6995a-a464-4ce8-9952-7c527abd86ce#/question/2
-/1 E
Question 3 of 14
View Policies
Current Attempt in Progress
A company has cost and revenue functions, in dollars, given by C(q) = 6000 + 8g and R(g) = 12g.
(a) Find the cost and revenue if the company produces 500 units. Does the company make a profit? What about 5000 units?
Enter the exact answers without comma separation of digits.
The cost of producing 500 units is $
i
The revenue if the company produces 500 units is $ i
Thus, the company
v a profit.
The cost of producing 5000 units is $
The revenue if the company produces 5000 units is $i
Thus, the company
v a profit.
eTextbook and Media
(b) Find the break-even point.
Enter the exact answer.
The break-even point is i
units.
eTextbook and Media
Which of tbe fellowina illust
break even point aranbically?
ssion_..docx
2 Discussion_-..docx
- Discussion_...docx
MacBook Pro
arrow_forward
Define Multicolinearity?
arrow_forward
I need help answering #2. Finding p-value
arrow_forward
+
X HitPaw Onlin
Ims.cisjubail.gov.sa/webapps/assessment/take/launch.jsp?course_assessment_id%= 73142_1&course_id=_765:
HitPaw Online Scre..
.I - ulicjo Juuluo O
RCYCI - Student Inf. O
Online C Compiler -. 4
Blackboard Learn 6
* Question Completion Status:
QUESTION 8
Let fand g be the function from the set of integers to itself, defined by f(x) = 2x + 1 and g(x) g(x)= 3x + 4. Then the composition (f ° g(x)) of f and g is
O A. 6x + 6
О В. 6х + 7
OC. 6x +9
O D. 6x + 8
QUESTION 9
arrow_forward
i macmillanhighered.com/launchpad/ips9e/15932912#/launchpad/item/PX_MULTIPART_LESSONS/de3d664e83174ac98724d7eOfba050b5?mode%=startQuiz&re..
E Apps
a Amazon.com - Onli.
2 Priceline.com
O TripAdvisor
O watch
O Imported From IE
Various Artists - We.
9 Episode 09: Home F.
Doctor Shortage: C. X XFINITY On Campus
A Done
Homework 2.2-2.4
26. Colorectal cancer (CRC) is the third most commonly diagnosed cancer among Americans (with nearly 147,000 new cases), and the third leading cause of cancer death (with over 50,000 deaths annually). Research was
done to determine whether there is a link between obesity and CRC mortality rates among African Americans in the United States by county. Below are the results of a least-squares regression analysis from the
software StatCrunch.
Simple linear regression results:
Dependent Variable: Mortality.rate
Independent Variable: Obesity.rate
Mortality.rate = 13,458199 - 0.21749489 Obesity.rate
Sample size: 3098
R (correlation coefficient) = -0.0067
R-sq =…
arrow_forward
O NWP Assessment Player UI Appli x
O CCSU - Meeting Detail
prin X
9 NWP Assessment Player UI Appli X
ent.education.wiley.com/was/ui/v2/assessment-player/index.html?launchld%36a59eb28-30ec-4b3f-9a67-cba2a3a48b85#/question/17
-/ 1
Question 18 of 20
Rocket Tracking. A tracking station has two telescopes that are 3 miles apart. Each telescope can lock onto a rocket after it is
launched and record its angle of elevation to the rocket. If the angles of elevation from telescopes A and B are 33 and 84°,
respectively, then how far is the rocket from telescope A?
84°
3 mi
Round your answer to one decimal place.
...pdf
%23
bp
tg
ho
41
144
PA
24
4.
%
&
E
00
arrow_forward
Foundation Student Handbook x - Course: Science and Engineeri X
9 SAMPLE-final exam_SEF041_2 X
b Verify Email | bartleby
(2 unread) - redb186@yahoo.c x +
qmplus.qmul.ac.uk/pluginfile.php/2633177/mod_resource/content/1/SAMPLE-final%20exam_SEF041_2021.pdf
A
Update :
Apps
Мaps
G Google
Mail - Ai'Sha Inay...
N Netflix
a Amazon.co.uk
Disney+ | Streami..
Course: Science a...
M Maths Genie - A L...
Edexcel AS Pure...
Reading List
>>
SAMPLE-final exam_SEF041_2021.pdf
4 / 7
129%
+ |
[a]
x E (, 7]
[b] x€ (,7]
[e]
not in the list
[c] x€ (0, 7]
[d] x€ (0, 5]
6.
Question 15. Let i=7-23+2k and y= 37+4}– 2k be the position vectors of X and Y.
Find the angle between i and y vectors. Give your answer in radians correct to 2 decimal places.
2
Answer:
Question 16. Let =i-23+2k and ỹ= 37+47– 2k be the position vectors of X and Y. The points
X, Y and the origin O form a parallelogram with the fourth point Z lying opposite the origin O.
Find the length of the diagonal XY.
Answer:
4
© Queen Mary University…
arrow_forward
Foundation Student Handbook x - Course: Science and Engineeri X
9 SAMPLE-final exam_SEF041_2 X
b Verify Email | bartleby
(2 unread) - redb186@yahoo.c x +
qmplus.qmul.ac.uk/pluginfile.php/2633177/mod_resource/content/1/SAMPLE-final%20exam_SEF041_2021.pdf
A
Update :
Apps
Мaps
G Google
Mail - Ai'Sha Inay...
N Netflix
a Amazon.co.uk
Disney+ | Streami..
Course: Science a...
M Maths Genie - A L...
Edexcel AS Pure...
Reading List
>>
SAMPLE-final exam_SEF041_2021.pdf
6 / 7
129%
+ |
Question 21. Let i denote the square root of -1. Suppose w=2– 3i. Find three cube roots of w in
the exponential form.
Note the arguments should be given as principal arguments [-T, T) in radians up to 3 decimal places.
|
a) wo = V13e0.3:
,-0.328i
b) wo = V13e
,-0.983i
c) wo = V13e
V13e-0.328i
W1 = V13e2.422i
Wi = V13e2.422i
Wi = V13e5.300i
V13e2.422i
w2 = V13e4.516i
,-1.767i
= V13e-
W2 = V13el1.583i
W2 = V13e-1.767i
d) wo
W1
||
e) not in the list
Question 22. Let i denote the square root of -1. Suppose z = 5+2i and…
arrow_forward
Foundation Student Handbook x - Course: Science and Engineeri X
9 SAMPLE-final exam_SEF041_2 X
b Verify Email | bartleby
(2 unread) - redb186@yahoo.c x +
qmplus.qmul.ac.uk/pluginfile.php/2633177/mod_resource/content/1/SAMPLE-final%20exam_SEF041_2021.pdf
A
Update :
Apps
Маps
G Google
Mail - Ai'Sha Inay...
N Netflix
a Amazon.co.uk
Disney+ | Streami..
Course: Science a...
M Maths Genie - A L...
Edexcel AS Pure...
Reading List
>>
SAMPLE-final exam_SEF041_2021.pdf
5 / 7
129%
+ |
Question 18. Consider the function g(x) = sin?x, in the interval [0, 1].
Use the Trapezium Rule, dividing the interval [0, 7] into strips of equal width d = T/2, to find an
estimate for the definite integral
| 8(x)dx.
2
Answer:
Question 19. A circular area of r-0 is swept out as a rod of fixed length r=1 m pivots about a
point through an angle of 0 radians. If area is increasing at a rate of m² per second, find the rate of
increase of the angle 0 in rad /s. Enter your answer correct to 2 decimal places without…
arrow_forward
If the average number of yards per game of all the HS wide receivers catches with 50 attempts in the 2010 season averaged 49 yards per game. A sample of 20 wide receivers from 2010 averaged 46.54 yards per game.
Is 49 yards a parameter or statistic? and provide correct statistical notation
Is 46.54 years a parameter or statistic? and provide correct statistical notation
arrow_forward
explain bedmas
arrow_forward
book/MTH 215T 57059731/chapter/2/section/2
> MTH/215T: Quantitative Reasoning I home > 2.2: Adding and subtracting
PARTICIPATION
ACTIVITY
Check
2) 110+85=
2.2.7: Mentally adding and estimations: Bake sale.
Drew ran a bake sale that made 108, 86, 101, and 52 dollars for the four nights of a school play. The school principal asks, "About
how much did the snack bar make?" Drew estimates by rounding to the nearest 5 and adding.
1) 108+86 is about 110+
115
Check
Show answer
Check
Show answer
3) 195+101 is about if 101 is rounded down to 100 first.
Show answer
zy Section 2.2-MTH/215T: Quantitative Reasoning I | zyBooks
4) 295+52 is about if 52 is rounded down to the nearest 5 first.
Check Show answer
vailab.com
site helps w/writting
monts. (use this site)
Search
A
Incorrect
The nearest 5 to 86 is 1 less than 86.
☆
zyBooks catalc
Feedback
be good to
5242
Encouraged me
Keen den in
arrow_forward
Age dependency Ratio:Old-Age dependency ratio:Child dependency Ratio:3. Explain the significance of each ratio by writing them in complete sentences. Why would someone bother to compare the populations of the relevant age categories?
arrow_forward
KS
Hawkes Learning Blackboard Le X
elearning.kctcs.edu/webapps/blackboard/content/contentWrapper.jsp?content_id-_31198949_18displayName=Hawkes+Learning&course_id=_493515589_1&na...
HH
Log out
West Kentucky
a Amazon.com: Onlin...
Lazy Day Cooking C...
t Typing Lessons | Le...
Cumberlands
EDOL Websites for...
Cite This For Me: H...
Templates C-Line...
Praxis
Apps
Murray State
>
Hawkes Learning
MAT 71: Foundations of Precalculus (4194_B5Z1)
Course Content
Lesson: 8.4 Point-Slope Form
Save & End Practice
LORIE TRIVETTE
2/10
Question 3 of 10, Step 1 of 1
Correct
Incorrect
-3
Find the equation for the line that passes through the point (-1, 2), and that is perpendicular to the line with the equation x
11
5
х
10°
10
-5
-5
10|
Send to Instructor
Skip
Submit Answer
Try Similar
Tutor
O2019 Hawkes Learning
7:42 PM
84
W
arrow_forward
the link to the data is given below. please help asap i will upvote!!
https://drive.google.com/file/d/18JRXEQEk8c-voKyNTUhUM9aZGhCWEr1N/view?usp=sharing
arrow_forward
Please do question 10 B part. Thanks
arrow_forward
A study is conducted comparing birth weights (in
pounds) of infants born to mothers of various ages.
The following data can also be found in the file
(a6_q1.xlsx) in the Module "Session 8":
Group Information:
1 = "< 20 Years"
2 = "20-29 Years"
3 = "30+ Years"
GROUP
BIRTHWT
1
8.4
1
7.3
1
9.1
1
7.8
1
8.4
7.5
2
6.3
2
6.9
2
5.4
2
7.1
3
6.9
3
7.1
3
5.7
3
6.5
3
6.6
arrow_forward
了
* 00
R
Frequency
cc.edu/webapps/assessment/take/launch.jsp?course_assessment_id=_842675_1&course_id%=_859154_1&content_id%3_19492605_1&step
* Question Completion Status:
QUESTION 1
The following histogram represents the number of body piercings for students in a statistics class.
40
0 2
4.
9
Number of Piercings
8
a. Is this graph symmetric or skewed?
b. For this graph, is mean or median the best choice for the measure of center?
c. For this graph, is standard deviation or IQR the best choice for the measure of variation?
d. For this graph, the mean expected to be
(higher than, lower than, or about the same as?) the median.
QUESTION 2
Click Save and Submit to save and submit. Click Save All Answers to save all answers.
Save
2
étv
MacBook Air
DD
F7
F8
08
F 4
F5
F3
2$
4
#3
9.
6.
5.
|
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

MATLAB: An Introduction with Applications
Statistics
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc

Probability and Statistics for Engineering and th...
Statistics
ISBN:9781305251809
Author:Jay L. Devore
Publisher:Cengage Learning

Statistics for The Behavioral Sciences (MindTap C...
Statistics
ISBN:9781305504912
Author:Frederick J Gravetter, Larry B. Wallnau
Publisher:Cengage Learning

Elementary Statistics: Picturing the World (7th E...
Statistics
ISBN:9780134683416
Author:Ron Larson, Betsy Farber
Publisher:PEARSON

The Basic Practice of Statistics
Statistics
ISBN:9781319042578
Author:David S. Moore, William I. Notz, Michael A. Fligner
Publisher:W. H. Freeman

Introduction to the Practice of Statistics
Statistics
ISBN:9781319013387
Author:David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:W. H. Freeman
Related Questions
- Dogwes O Do Homework - TMara Gilchrist - Google Chrome i mathd.com/Student/PlayerHomework.aspx?homeworkld=574125327&questionld 9&flushed%-false&cld%3D6161404¢erwin=yes T'Mara Gilchrist & Mat 122 - 80 Fall 2020 Homework: Section 7.1 Homework HW Score: 64%, « 24 of 25 (17 complete) ▼ Score: 0 of 1 pt E Question Help Gen Interest 7.1.65 The table shows some trees that are in two city parks. Let U be the smallest possible set that includes all the trees listed, R be the set of trees in Riverside Park, and S be the set of trees in Sleepy Hollow Park. Find R Riverside Park Birch, b Dogwood, d Sleepy Hollow Park Elm, e Willow, w Birch, b ucamore s Pina P Em, Oak, o Dogwood, d Use the lowercase letters in the table to list the elements in R' R'=O (Use a comma to separate answers as needed.) nswer box and then click Check Answer Clear A Check Answes aarrow_forwardA nutritionist collects the weight of college students in the first semester, then again in the second semester. What is the best way to visually present this data? a) Line Graphs b) Scatterplots c) Bar Graphs d) Pie Chartsarrow_forwardM ui/v2/assessment-player/index.html?launchld=3cb6995a-a464-4ce8-9952-7c527abd86ce#/question/2 -/1 E Question 3 of 14 View Policies Current Attempt in Progress A company has cost and revenue functions, in dollars, given by C(q) = 6000 + 8g and R(g) = 12g. (a) Find the cost and revenue if the company produces 500 units. Does the company make a profit? What about 5000 units? Enter the exact answers without comma separation of digits. The cost of producing 500 units is $ i The revenue if the company produces 500 units is $ i Thus, the company v a profit. The cost of producing 5000 units is $ The revenue if the company produces 5000 units is $i Thus, the company v a profit. eTextbook and Media (b) Find the break-even point. Enter the exact answer. The break-even point is i units. eTextbook and Media Which of tbe fellowina illust break even point aranbically? ssion_..docx 2 Discussion_-..docx - Discussion_...docx MacBook Proarrow_forward
- Define Multicolinearity?arrow_forwardI need help answering #2. Finding p-valuearrow_forward+ X HitPaw Onlin Ims.cisjubail.gov.sa/webapps/assessment/take/launch.jsp?course_assessment_id%= 73142_1&course_id=_765: HitPaw Online Scre.. .I - ulicjo Juuluo O RCYCI - Student Inf. O Online C Compiler -. 4 Blackboard Learn 6 * Question Completion Status: QUESTION 8 Let fand g be the function from the set of integers to itself, defined by f(x) = 2x + 1 and g(x) g(x)= 3x + 4. Then the composition (f ° g(x)) of f and g is O A. 6x + 6 О В. 6х + 7 OC. 6x +9 O D. 6x + 8 QUESTION 9arrow_forward
- i macmillanhighered.com/launchpad/ips9e/15932912#/launchpad/item/PX_MULTIPART_LESSONS/de3d664e83174ac98724d7eOfba050b5?mode%=startQuiz&re.. E Apps a Amazon.com - Onli. 2 Priceline.com O TripAdvisor O watch O Imported From IE Various Artists - We. 9 Episode 09: Home F. Doctor Shortage: C. X XFINITY On Campus A Done Homework 2.2-2.4 26. Colorectal cancer (CRC) is the third most commonly diagnosed cancer among Americans (with nearly 147,000 new cases), and the third leading cause of cancer death (with over 50,000 deaths annually). Research was done to determine whether there is a link between obesity and CRC mortality rates among African Americans in the United States by county. Below are the results of a least-squares regression analysis from the software StatCrunch. Simple linear regression results: Dependent Variable: Mortality.rate Independent Variable: Obesity.rate Mortality.rate = 13,458199 - 0.21749489 Obesity.rate Sample size: 3098 R (correlation coefficient) = -0.0067 R-sq =…arrow_forwardO NWP Assessment Player UI Appli x O CCSU - Meeting Detail prin X 9 NWP Assessment Player UI Appli X ent.education.wiley.com/was/ui/v2/assessment-player/index.html?launchld%36a59eb28-30ec-4b3f-9a67-cba2a3a48b85#/question/17 -/ 1 Question 18 of 20 Rocket Tracking. A tracking station has two telescopes that are 3 miles apart. Each telescope can lock onto a rocket after it is launched and record its angle of elevation to the rocket. If the angles of elevation from telescopes A and B are 33 and 84°, respectively, then how far is the rocket from telescope A? 84° 3 mi Round your answer to one decimal place. ...pdf %23 bp tg ho 41 144 PA 24 4. % & E 00arrow_forwardFoundation Student Handbook x - Course: Science and Engineeri X 9 SAMPLE-final exam_SEF041_2 X b Verify Email | bartleby (2 unread) - redb186@yahoo.c x + qmplus.qmul.ac.uk/pluginfile.php/2633177/mod_resource/content/1/SAMPLE-final%20exam_SEF041_2021.pdf A Update : Apps Мaps G Google Mail - Ai'Sha Inay... N Netflix a Amazon.co.uk Disney+ | Streami.. Course: Science a... M Maths Genie - A L... Edexcel AS Pure... Reading List >> SAMPLE-final exam_SEF041_2021.pdf 4 / 7 129% + | [a] x E (, 7] [b] x€ (,7] [e] not in the list [c] x€ (0, 7] [d] x€ (0, 5] 6. Question 15. Let i=7-23+2k and y= 37+4}– 2k be the position vectors of X and Y. Find the angle between i and y vectors. Give your answer in radians correct to 2 decimal places. 2 Answer: Question 16. Let =i-23+2k and ỹ= 37+47– 2k be the position vectors of X and Y. The points X, Y and the origin O form a parallelogram with the fourth point Z lying opposite the origin O. Find the length of the diagonal XY. Answer: 4 © Queen Mary University…arrow_forward
- Foundation Student Handbook x - Course: Science and Engineeri X 9 SAMPLE-final exam_SEF041_2 X b Verify Email | bartleby (2 unread) - redb186@yahoo.c x + qmplus.qmul.ac.uk/pluginfile.php/2633177/mod_resource/content/1/SAMPLE-final%20exam_SEF041_2021.pdf A Update : Apps Мaps G Google Mail - Ai'Sha Inay... N Netflix a Amazon.co.uk Disney+ | Streami.. Course: Science a... M Maths Genie - A L... Edexcel AS Pure... Reading List >> SAMPLE-final exam_SEF041_2021.pdf 6 / 7 129% + | Question 21. Let i denote the square root of -1. Suppose w=2– 3i. Find three cube roots of w in the exponential form. Note the arguments should be given as principal arguments [-T, T) in radians up to 3 decimal places. | a) wo = V13e0.3: ,-0.328i b) wo = V13e ,-0.983i c) wo = V13e V13e-0.328i W1 = V13e2.422i Wi = V13e2.422i Wi = V13e5.300i V13e2.422i w2 = V13e4.516i ,-1.767i = V13e- W2 = V13el1.583i W2 = V13e-1.767i d) wo W1 || e) not in the list Question 22. Let i denote the square root of -1. Suppose z = 5+2i and…arrow_forwardFoundation Student Handbook x - Course: Science and Engineeri X 9 SAMPLE-final exam_SEF041_2 X b Verify Email | bartleby (2 unread) - redb186@yahoo.c x + qmplus.qmul.ac.uk/pluginfile.php/2633177/mod_resource/content/1/SAMPLE-final%20exam_SEF041_2021.pdf A Update : Apps Маps G Google Mail - Ai'Sha Inay... N Netflix a Amazon.co.uk Disney+ | Streami.. Course: Science a... M Maths Genie - A L... Edexcel AS Pure... Reading List >> SAMPLE-final exam_SEF041_2021.pdf 5 / 7 129% + | Question 18. Consider the function g(x) = sin?x, in the interval [0, 1]. Use the Trapezium Rule, dividing the interval [0, 7] into strips of equal width d = T/2, to find an estimate for the definite integral | 8(x)dx. 2 Answer: Question 19. A circular area of r-0 is swept out as a rod of fixed length r=1 m pivots about a point through an angle of 0 radians. If area is increasing at a rate of m² per second, find the rate of increase of the angle 0 in rad /s. Enter your answer correct to 2 decimal places without…arrow_forwardIf the average number of yards per game of all the HS wide receivers catches with 50 attempts in the 2010 season averaged 49 yards per game. A sample of 20 wide receivers from 2010 averaged 46.54 yards per game. Is 49 yards a parameter or statistic? and provide correct statistical notation Is 46.54 years a parameter or statistic? and provide correct statistical notationarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- MATLAB: An Introduction with ApplicationsStatisticsISBN:9781119256830Author:Amos GilatPublisher:John Wiley & Sons IncProbability and Statistics for Engineering and th...StatisticsISBN:9781305251809Author:Jay L. DevorePublisher:Cengage LearningStatistics for The Behavioral Sciences (MindTap C...StatisticsISBN:9781305504912Author:Frederick J Gravetter, Larry B. WallnauPublisher:Cengage Learning
- Elementary Statistics: Picturing the World (7th E...StatisticsISBN:9780134683416Author:Ron Larson, Betsy FarberPublisher:PEARSONThe Basic Practice of StatisticsStatisticsISBN:9781319042578Author:David S. Moore, William I. Notz, Michael A. FlignerPublisher:W. H. FreemanIntroduction to the Practice of StatisticsStatisticsISBN:9781319013387Author:David S. Moore, George P. McCabe, Bruce A. CraigPublisher:W. H. Freeman

MATLAB: An Introduction with Applications
Statistics
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc

Probability and Statistics for Engineering and th...
Statistics
ISBN:9781305251809
Author:Jay L. Devore
Publisher:Cengage Learning

Statistics for The Behavioral Sciences (MindTap C...
Statistics
ISBN:9781305504912
Author:Frederick J Gravetter, Larry B. Wallnau
Publisher:Cengage Learning

Elementary Statistics: Picturing the World (7th E...
Statistics
ISBN:9780134683416
Author:Ron Larson, Betsy Farber
Publisher:PEARSON

The Basic Practice of Statistics
Statistics
ISBN:9781319042578
Author:David S. Moore, William I. Notz, Michael A. Fligner
Publisher:W. H. Freeman

Introduction to the Practice of Statistics
Statistics
ISBN:9781319013387
Author:David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:W. H. Freeman