mparvez2023-DataScience Assignment 3.ipynb - Colaboratory
pdf
keyboard_arrow_up
School
Florida Atlantic University *
*We aren’t endorsed by this school
Course
CAP 4613
Subject
Statistics
Date
Feb 20, 2024
Type
Pages
5
Uploaded by BailiffHeatGrouse38
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
1/5
year
month
day
dep_time
dep_delay
arr_time
arr_delay
carrier
tailnum
flight
origin
des
0
2013
6
30
940
15
1216
-4
VX
N626VA
407
JFK
LA
1
2013
5
7
1657
-3
2104
10
DL
N3760C
329
JFK
SJ
2
2013
12
8
859
-1
1238
11
DL
N712TW
422
JFK
LA
3
2013
5
14
1841
-4
2122
-34
DL
N914DL
2391
JFK
TP
4
2013
7
21
1102
-3
1230
-8
9E
N823AY
3652
LGA
OR
...
...
...
...
...
...
...
...
...
...
...
...
32730
2013
10
8
752
-8
921
-28
9E
N8505Q
3611
JFK
P
32731
2013
7
7
812
-3
1043
8
DL
N6713Y
1429
JFK
LA
32732
2013
9
3
1057
-1
1319
-19
UA
N77871
1545
EWR
IA
32733
2013
10
15
844
56
1045
60
B6
N258JB
1273
JFK
CH
32734
2013
3
28
1813
-3
1942
-23
UA
N36272
1053
EWR
CL
32735 rows × 16 columns
import pandas as pd
# Specify the file path
#file_path = C:\Users\Mohammed Parvez\Desktop\nycflights.csv'
# Read the data file into a DataFrame
#df = pd.read_csv(file_path)
# Display the DataFrame
df
Q1)Read nyc±ights.csv ²le using pandas and name it df. Create a new data frame by selecting dep_time, dep_delay, arr_time, arr_delay, and
tailnum, and name it newyork_±ight_new—display with the ²rst ²ve entries.
dep_time
dep_delay
arr_time
arr_delay
tailnum
0
940
15
1216
-4
N626VA
1
1657
-3
2104
10
N3760C
2
859
-1
1238
11
N712TW
3
1841
-4
2122
-34
N914DL
4
1102
-3
1230
-8
N823AY
import pandas as pd
# Read the CSV file and create the DataFrame
#df = pd.read_csv(C:\Users\Mohammed Parvez\Desktop\\nycflights.csv')
# Create a new DataFrame with selected columns
newyork_flight_new = df[['dep_time', 'dep_delay', 'arr_time', 'arr_delay', 'tailnum']]
# Display the first five entries of the new DataFrame
newyork_flight_new.head()
Q2: Filter newyork_±ight_new by selecting rows with a departure time greater than 2000 and naming it dep_time_2000. How many rows were
deleted?
# Filter the DataFrame by selecting rows with departure time greater than 2000
dep_time_2000 = newyork_flight_new[newyork_flight_new['dep_time'] > 2000]
# Count the number of rows deleted (not meeting the condition)
rows_deleted = len(newyork_flight_new) - len(dep_time_2000)
# Display the number of rows deleted
print("Number of rows deleted:", rows_deleted)
Number of rows deleted: 29166
Q3) Do we have any missing values in dep_delay? If yes, replace the missing values with the median of dep_delay
import pandas as pd
import numpy as np
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
2/5
# Check for missing values in 'dep_delay'
missing_values = newyork_flight_new['dep_delay'].isnull().sum()
if missing_values > 0:
# Calculate the median of 'dep_delay'
median_dep_delay = newyork_flight_new['dep_delay'].median()
# Replace missing values with the median
newyork_flight_new['dep_delay'].fillna(median_dep_delay, inplace=True)
print("Missing values in 'dep_delay' column were replaced with the median.")
else:
print("No missing values found in 'dep_delay' column.")
No missing values found in 'dep_delay' column.
Q4) Use the query function to ²lter all the rows with airtime greater than 120 minutes and distance greater than 700 km
import pandas as pd
# Read the dataset using pandas
file_path = 'C:\\Users\\Mohammed Parvez\\Desktop\\student-por.csv'
#df = pd.read_csv(file_path, sep=';')
# Filter the rows using the query function
#filtered_data = df.query('airtime > 120 and distance > 700')
# Display the filtered DataFrame
print(filtered_data)
year month day dep_time dep_delay arr_time arr_delay carrier \
0 2013 6 30 940 15 1216 -4 VX 1 2013 5 7 1657 -3 2104 10 DL 2 2013 12 8 859 -1 1238 11 DL 3 2013 5 14 1841 -4 2122 -34 DL 5 2013 1 1 1817 -3 2008 3 AA ... ... ... ... ... ... ... ... ... 32720 2013 4 17 1023 -7 1341 -24 VX 32722 2013 7 9 600 0 822 -8 AA 32726 2013 2 4 1558 -2 1854 4 DL 32731 2013 7 7 812 -3 1043 8 DL 32732 2013 9 3 1057 -1 1319 -19 UA tailnum flight origin dest air_time distance hour minute 0 N626VA 407 JFK LAX 313 2475 9 40 1 N3760C 329 JFK SJU 216 1598 16 57 2 N712TW 422 JFK LAX 376 2475 8 59 3 N914DL 2391 JFK TPA 135 1005 18 41 5 N3AXAA 353 LGA ORD 138 733 18 17 ... ... ... ... ... ... ... ... ... 32720 N842VA 187 EWR SFO 351 2565 10 23 32722 N3ERAA 707 LGA DFW 178 1389 6 0 32726 N3737C 1331 JFK DEN 238 1626 15 58 32731 N6713Y 1429 JFK LAS 286 2248 8 12 32732 N77871 1545 EWR IAH 180 1400 10 57 [17840 rows x 16 columns]
Q5) Create a new data frame by dep_time, dep_delay, arr_time, arr_delay, tail num, and destination using ²lter() and name it df1.
import pandas as pd
# Assuming you already have a DataFrame named 'df'
# Select the desired columns using filter()
df1 = df.filter(['dep_time', 'dep_delay', 'arr_time', 'arr_delay', 'tailnum', 'destination'])
# Display the new DataFrame
print(df1)
dep_time dep_delay arr_time arr_delay tailnum
0 940 15 1216 -4 N626VA
1 1657 -3 2104 10 N3760C
2 859 -1 1238 11 N712TW
3 1841 -4 2122 -34 N914DL
4 1102 -3 1230 -8 N823AY
... ... ... ... ... ...
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
3/5
32730 752 -8 921 -28 N8505Q
32731 812 -3 1043 8 N6713Y
32732 1057 -1 1319 -19 N77871
32733 844 56 1045 60 N258JB
32734 1813 -3 1942 -23 N36272
[32735 rows x 5 columns]
Q6) Add a new column "total_delay" to df1 using assign(). Total_delay can be calculated by adding dep_delay and arr_delay
# Assuming you already have a DataFrame named 'df1'
# Add a new column "total_delay" using assign()
df1 = df1.assign(total_delay=df1['dep_delay'] + df1['arr_delay'])
# Display the updated DataFrame
print(df1)
dep_time dep_delay arr_time arr_delay tailnum total_delay
0 940 15 1216 -4 N626VA 11
1 1657 -3 2104 10 N3760C 7
2 859 -1 1238 11 N712TW 10
3 1841 -4 2122 -34 N914DL -38
4 1102 -3 1230 -8 N823AY -11
... ... ... ... ... ... ...
32730 752 -8 921 -28 N8505Q -36
32731 812 -3 1043 8 N6713Y 5
32732 1057 -1 1319 -19 N77871 -20
32733 844 56 1045 60 N258JB 116
32734 1813 -3 1942 -23 N36272 -26
[32735 rows x 6 columns]
Q7) Group df according to "months" and ²nd the average air time and maximum distance traveled. Use groupby() and agg() functions.
# Group the DataFrame by "months" and calculate average airtime and maximum distance
#grouped_df = df.groupby('months').agg(avg_airtime=('airtime', 'mean'), max_distance=('distance', 'max'))
# Display the grouped DataFrame
print(grouped_df)
air_time distance
month 1 152.026054 4983
2 149.713911 4983
3 151.598466 4983
4 152.737864 4983
5 147.203474 4983
6 147.172035 4983
7 147.390956 4983
8 146.139583 4983
9 145.423349 4983
10 145.775312 4983
11 158.226857 4983
12 162.330265 4983
import pandas as pd
# Specify the file path
# file_path_1= 'C:data\student-por.csv'
file_path_1= './student-por.csv'
# Read the data file into a DataFrame
df = pd.read_csv(file_path_1)
# Display the DataFrame
df
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
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
4/5
age
Medu
Fedu
traveltime
studytime
failures
famrel
freetime
goout
Dalc
0
18
4
4
2
2
0
4
3
4
1
1
17
1
1
1
2
0
5
3
3
1
2
15
1
1
1
2
0
4
3
2
2
3
15
4
2
1
3
0
3
2
2
1
4
16
3
3
1
2
0
4
3
2
1
...
...
...
...
...
...
...
...
...
...
...
644
19
2
3
1
3
1
5
4
2
1
645
18
3
1
1
2
0
4
3
4
1
646
18
1
1
2
2
0
1
1
1
1
647
17
3
1
2
1
0
2
4
5
3
648
18
3
2
3
1
0
4
4
1
3
649 rows × 16 columns
Q8) Import student-por using pandas. How many features do we have in this dataset?
import pandas as pd
# Specify the file path
file_path_1 = 'C:data\student-por.csv'
# Read the data file into a DataFrame
df = pd.read_csv('./student-por.csv', sep=',')
# Get the number of features (columns)
num_features = df.shape[1]
# Print the number of features
print("Number of features:", num_features)
Number of features: 16
Q9)Fit a simple linear regression model between:
Study time and G1 Study time and G2 Which pair gave us the best performance?
import pandas as pd
from sklearn.linear_model import LinearRegression
# Read the dataset
df = pd.read_csv('./student-por.csv', sep=',')
# Fit a linear regression model for study time and G1
X1 = df[['studytime']]
y1 = df['G1']
model1 = LinearRegression()
model1.fit(X1, y1)
r_squared1 = model1.score(X1, y1)
# Fit a linear regression model for study time and G2
X2 = df[['studytime']]
y2 = df['G2']
model2 = LinearRegression()
model2.fit(X2, y2)
r_squared2 = model2.score(X2, y2)
# Print the R-squared values
print("R-squared value for study time and G1:", r_squared1)
print("R-squared value for study time and G2:", r_squared2)
R-squared value for study time and G1: 0.06805596405355119
R-squared value for study time and G2: 0.05783928756147938
import pandas as pd
from sklearn.linear_model import LinearRegression
# Read the dataset
df = pd.read_csv('./student-por.csv', sep=',')
# Fit linear regression models for study time and G1, and study time and G2
model1 = LinearRegression().fit(df[['studytime']], df['G1'])
model2 = LinearRegression().fit(df[['studytime']], df['G2'])
# Calculate R-squared values
r_squared1 = model1.score(df[['studytime']], df['G1'])
r_squared2 = model2.score(df[['studytime']], df['G2'])
# Compare R-squared values and print the result
if r_squared1 > r_squared2:
print("Study time and G1 pair has better performance.")
else:
print("Study time and G2 pair has better performance.")
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
5/5
0s
completed at 7:17 PM
C l b
id
d
t
C
l
t
t
h
Study time and G1 pair has better performance.
Q10: Is there a linear relationship between:
Absences and G1 Absences and G2 We can ²nd this by ²tting a simple linear regression model.
import pandas as pd
from sklearn.linear_model import LinearRegression
# Read the dataset
df = pd.read_csv('./student-por.csv', sep=',')
# Fit linear regression models for absences and G1, and absences and G2
model1 = LinearRegression().fit(df['absences'].values.reshape(-1, 1), df['G1'])
model2 = LinearRegression().fit(df['absences'].values.reshape(-1, 1), df['G2'])
# Determine if there is a linear relationship
if model1.coef_[0] != 0:
print("There is a linear relationship between absences and G1.")
else:
print("There is no linear relationship between absences and G1.")
if model2.coef_[0] != 0:
print("There is a linear relationship between absences and G2.")
else:
print("There is no linear relationship between absences and G2.")
There is a linear relationship between absences and G1.
There is a linear relationship between absences and G2.
Googel Colab link https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=Q4BZ17hVOKBo
Related Documents
Related Questions
mearhing.com/assess2/?cid%3D52262&aid%3D37988882/skip/15
New folder
Web Store
O My LaGuardia - Stu.
RYEmployee-facing re...
O Electronic library
Laugrdia work time.
* Login -F
3-
12 -11 10 -9 8 -7 6 5
-2-1
3
4 5
9 10 11 12
-2
-5
Give the equation for the function whose graph appears above. Use f(a) as the output.
arrow_forward
Malikinorschool.com/Student/PlayerHomework.aspx?homeworkld=29428062&questionld=2&flushed%-false&cld35
a SDPBC Bookmarks
O Portal
(141) Dashboard |--
E Factoring Notes-G..
6 ef
Review Of Menstrua.
Period 4-Semester 2
Homework: Inscribed Angles
core: 0 of 1 pt
2 of 6 (3 complete)
12.3.7
Find the value of a. The dot represents the center of the circle.
Enter your answer in the answer box and then click Check Answer.
Clear All
All parts showing
DELL
Ce
%23
24
&
3
4
5
arrow_forward
Please do question 10 B part. Thanks
arrow_forward
NCIPLES( X
L Line of Best Fit Worksheet Feb 11 X
Ja Desmos | Graphing Calculator
drive.google.com/file/d/1YDQXNw50SCiOt1sNui04S-ZqxnyfAv8b/view
O Yoselin Reanos-Oliv.
A Dashboard
A Dashboard
A https://idp.ncedclo.
rksheet Feb 18.pdf
Open with ,
Algebra 2
2.4: Line of Best Fit Worksheet
Name
_Block:
1. The table below gives the number of hours spent studying for a science exam and the final exam
grade.
Study hours
4
2
3
Grade
77
92
70
63
90
75
84
a) Using graph paper, draw a scatterplot of the data.
b) What is the equation for the line of best fit? Sketch this on your graph.
Equation
c) Predict the exam grade of a student who studied for 6 hours.
Grade expected
d) Could this line go on forever? Why or why not?
2. The table below gives the height and shoe sizes of six randomly selected men.
Page
1755
Height (in.)
Shoe size
67
66
85
95
11
13
火
->
&
%23
6.
7
8.
9.
%24
arrow_forward
Find A^-1
arrow_forward
e learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com
+
Bb https://learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com/5d44406cac91b/264693142?X-Blackboard-Expiration=1635400800000&X-Blackboard-Signature.
b My Questions | bartleby
Find the system of equations to model the problem. DO NOT SOLVE THIS SYSTEM.
9) A $124,000 trust is to be invested in bonds paying 9%, CDs paying 8%, and mortgages paying 10%. 1 9)
sum of the amount invested in bonds and the amount invested in CDs must equal the mortgage
investment. To earn an $11,400 annual income from the investments, how much should the bank inv
each?
Let x represent the amount invested in bonds, y the amount invested in CDs, and z the amount inve:
mortgages.
A) x + y - z = 11,400
x - y + 9z = 22
8х + у +z%3D 124,000
С) х +у -Z3D0
x + y + z = 124,000
0.09x + 0.08y + 0.1z = 11,400
В) х + у-z%3D0
X + y + z = 124,000
9x + 8y + z = 11,400
D) x + y + z = 0
x + y - 9z = 124,000
0.1x + 0.08y - 0.09z= 11,400
10)
10) There were…
arrow_forward
e learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com
+
Bb https://learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com/5d44406cac91b/264693142?X-Blackboard-Expiration=1635400800000&X-Blackboard-Signature.
b My Questions | bartleby
[U -2]
[-1 3]
SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.
Provide an appropriate response.
[2 1
21) Solve the matrix equation
5.3
8-Rby
3
by using the inverse of the coefficient
21)
matrix.
Page 4 -Review
MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.
Write the system as a matrix equation of the form AX = B.
22) 6x1 + 4x2 = 30
22)
8x2 = 72
X1
X1
[6 4]
A)
08 || x2
6 4
В)
8 72 || x2
30 4
×1
х1
C)
D)
x2
X2
Provide an appropriate response.
23) Determine the value of each variable.
23)
arrow_forward
Chrome
Archivo
Editar
Ver
Historial
Favoritos
Perfiles
Pestaña
Ventana
Ayuda
Bb
Bb Bb Bb BbSBb Bb Bb Bb Bb
A bbhosted.cuny.edu/webapps/assessment/take/launch.jsp?course_assessment_id%3_2002398_1&course_id=_2050858_1&content_id%=D_
Aplicaciones M Gmail
YouTube
Maps
Noticias
Traducir
* Question Completion Status:
A health researcher read that a 150-pound college-aged, male can burn an average of 530 calories per hour playing tennis with a standard deviation of 25
calories. 40 college-aged males were randomly selected at a commuter school and the mean number of calories burned per hour playing tennis was 540
calories.
Do college-aged male tennis players at the commuter school burn more calories per hour than the college-aged,male tennis player population?
Test with a 0.05 significance level.
What is the probability of Z obr? (round to nearest hundredth)
arrow_forward
> Finals Schedule - Bb Collabo O x
Lorg/webapps/assessment/take/launch.jsp?course_assessment_id%3D_43176 1&course_id%3_41581_1&contes
cemaining Time: 1 hour, 10 minutes, 35 seconds.
Question Completion Status:
QUESTION 18
A football is kicked up into the air. The height of the football can be modeled as a function of time as shown by the
equation, h(t) = -4t2 + 18t, where h is the height of the football in feet, and t is the time in seconds. How many
seconds did it take for the football to réach the ground after it was kicked?
O 20.25 seconds
O 2.25 seconds
O 9 seconds
O 4.5 seconds
QUESTION 19
Find the missing length
Click Save and Submit to save and subinit, Click Saue All Anstuers to save all answers.
arrow_forward
https://www.dcourier.com/photos/2018/may/26/984960336/
arrow_forward
SjfuRKgaZju7NvIBwKOFNns"%5D%2C"action"%3A".
106%
9. If MZVST = (5x+23)° and MZVUT =
(8x – 49)°, find MZSVT.
Bメー4ニラメト23
5 xt23
= 190
20°
arrow_forward
Sahar Rasoul-Math 7 End of Yea X Gspy ninjas book-Google
docs.google.com/spreadsheets/d/1j5MotWzsc0V1V3Qyl4rbP_OFOUotaNXCIIFax>
Copy of Copy of Col...
8.8
Sahar Rasoul - Math 7 End of Year Digital Task Cards Student Version ☆
File Edit View Insert Format Data Tools Extensions Help Last edit was 5 minu
$ % .0 .00 123 Century Go... ▼ 18 Y BIS
fx| =IF(B4="Question 1", Sheet2! H21, if(B4="Question 2", Sheet2! H22, IF(B4="
n
100%
36:816
A
B
C
6
16
A flashlight can light
a circular area of up
to 6 feet in diameter.
What is the maximum
area that can be lit?
Round to the nearest
tenth.
30x
0004
15
A Sheet1
https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.amazon.com%2FSpy-Ninjas-Ultimate-Guidebook-Scholastic%2Fdp
7
8
9
10
11
12
13
14
3
5.
7.
a
5
$9
A
arrow_forward
Use 3 point graphing tool
arrow_forward
A model for the men’s 100-meter freestyle record times in seconds is given by
y=(38,504.4888 + 44.37530536x^2)/(1+x+x^2)
where x = 0 represents 1900. The model and the data points are shown in the graph below. Use this model to predict a reasonable record for a man to swim 100 meters in the year 2000. Explain how you determined your answer.
arrow_forward
Chrome
Archivo
Editar
Ver
Historial
Favoritos
Perfiles
Pestaña
Ventana
Ayuda
Bb
Bb Bb Bb S Bb Bb Bb Bb Bb
bbhosted.cuny.edu/webapps/assessment/take/launch.jsp?course_assessment_id3D_2002397_1&course_id%= 2050858_1&content_id=_
Aplicaciones
M Gmail
YouTube
A Maps
Noticias
Traducir
* Question Completion Status:
According the the U.S. Department of Education, full-time graduate students receive an average salary of $15,000 with a standard deviation of $1,200. The dean
of graduate studies at a large state university in PA claims that his graduate students earn more than this. He surveys 100 randomly selected students and finds
their average salary is $16,000. Use a significance level of 0.05 to test if there is evidence that the dean's claim is correct.
What is the probability of Zobr?
arrow_forward
practive test
arrow_forward
me
Archivo
Editar
Ver
Historial
Favoritos
Perfiles
Pestaña
Ventana
Ayuda
BE BE 3S
bbhosted.cuny.edu/webapps/assessment/take/launch.jsp?course_assessment_id%3D_2002402_1&course_id%=_2050858_1&content_i
caciones
M Gmail
YouTube
A Maps
Noticias Traducir
Question Completion Status:
The amount of water consumed each week by Bronx residences is normally distributed. The population mean of water consumption is 120.3 gallons with a
standard deviation of 10.0 gallons. Test the claim at the 0.10 significance level that the average amount of water consumed is not 125 gallons with a sample
size of 100 residences.
What is the standard error? (round to hundredths)
arrow_forward
a learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com
+
Bb https://learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com/5d44406cac91b/264693142?X-Blackboard-Expiration=1635400800000&X-Blackboard-Signature.
b My Questions | bartleby
-6 -6
19)
-5 -5
19)
5
6
11
11
11
11
11
11
A)
5
В)
5
6.
D) Does not exist
11
11
11
11
11
11
Answer the question.
20) Which of the following matrices has an inverse?
20)
3 -2 1
A)
| 4 0 7
В)
C)
D)
-1 3
SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.
Provide an appropriate response.
皇中。
[2 1 x1
5 3 || x2
| by using the inverse of the coefficient
18
21) Solve the matrix equation
21)
matrix.
Page 4 -Review
MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.
미
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Trigonometry (MindTap Course List)
Trigonometry
ISBN:9781305652224
Author:Charles P. McKeague, Mark D. Turner
Publisher:Cengage Learning
Algebra & Trigonometry with Analytic Geometry
Algebra
ISBN:9781133382119
Author:Swokowski
Publisher:Cengage

Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill
Related Questions
- mearhing.com/assess2/?cid%3D52262&aid%3D37988882/skip/15 New folder Web Store O My LaGuardia - Stu. RYEmployee-facing re... O Electronic library Laugrdia work time. * Login -F 3- 12 -11 10 -9 8 -7 6 5 -2-1 3 4 5 9 10 11 12 -2 -5 Give the equation for the function whose graph appears above. Use f(a) as the output.arrow_forwardMalikinorschool.com/Student/PlayerHomework.aspx?homeworkld=29428062&questionld=2&flushed%-false&cld35 a SDPBC Bookmarks O Portal (141) Dashboard |-- E Factoring Notes-G.. 6 ef Review Of Menstrua. Period 4-Semester 2 Homework: Inscribed Angles core: 0 of 1 pt 2 of 6 (3 complete) 12.3.7 Find the value of a. The dot represents the center of the circle. Enter your answer in the answer box and then click Check Answer. Clear All All parts showing DELL Ce %23 24 & 3 4 5arrow_forwardPlease do question 10 B part. Thanksarrow_forward
- NCIPLES( X L Line of Best Fit Worksheet Feb 11 X Ja Desmos | Graphing Calculator drive.google.com/file/d/1YDQXNw50SCiOt1sNui04S-ZqxnyfAv8b/view O Yoselin Reanos-Oliv. A Dashboard A Dashboard A https://idp.ncedclo. rksheet Feb 18.pdf Open with , Algebra 2 2.4: Line of Best Fit Worksheet Name _Block: 1. The table below gives the number of hours spent studying for a science exam and the final exam grade. Study hours 4 2 3 Grade 77 92 70 63 90 75 84 a) Using graph paper, draw a scatterplot of the data. b) What is the equation for the line of best fit? Sketch this on your graph. Equation c) Predict the exam grade of a student who studied for 6 hours. Grade expected d) Could this line go on forever? Why or why not? 2. The table below gives the height and shoe sizes of six randomly selected men. Page 1755 Height (in.) Shoe size 67 66 85 95 11 13 火 -> & %23 6. 7 8. 9. %24arrow_forwardFind A^-1arrow_forwarde learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com + Bb https://learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com/5d44406cac91b/264693142?X-Blackboard-Expiration=1635400800000&X-Blackboard-Signature. b My Questions | bartleby Find the system of equations to model the problem. DO NOT SOLVE THIS SYSTEM. 9) A $124,000 trust is to be invested in bonds paying 9%, CDs paying 8%, and mortgages paying 10%. 1 9) sum of the amount invested in bonds and the amount invested in CDs must equal the mortgage investment. To earn an $11,400 annual income from the investments, how much should the bank inv each? Let x represent the amount invested in bonds, y the amount invested in CDs, and z the amount inve: mortgages. A) x + y - z = 11,400 x - y + 9z = 22 8х + у +z%3D 124,000 С) х +у -Z3D0 x + y + z = 124,000 0.09x + 0.08y + 0.1z = 11,400 В) х + у-z%3D0 X + y + z = 124,000 9x + 8y + z = 11,400 D) x + y + z = 0 x + y - 9z = 124,000 0.1x + 0.08y - 0.09z= 11,400 10) 10) There were…arrow_forward
- e learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com + Bb https://learn-us-east-1-prod-fleet02-xythos.content.blackboardcdn.com/5d44406cac91b/264693142?X-Blackboard-Expiration=1635400800000&X-Blackboard-Signature. b My Questions | bartleby [U -2] [-1 3] SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Provide an appropriate response. [2 1 21) Solve the matrix equation 5.3 8-Rby 3 by using the inverse of the coefficient 21) matrix. Page 4 -Review MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Write the system as a matrix equation of the form AX = B. 22) 6x1 + 4x2 = 30 22) 8x2 = 72 X1 X1 [6 4] A) 08 || x2 6 4 В) 8 72 || x2 30 4 ×1 х1 C) D) x2 X2 Provide an appropriate response. 23) Determine the value of each variable. 23)arrow_forwardChrome Archivo Editar Ver Historial Favoritos Perfiles Pestaña Ventana Ayuda Bb Bb Bb Bb BbSBb Bb Bb Bb Bb A bbhosted.cuny.edu/webapps/assessment/take/launch.jsp?course_assessment_id%3_2002398_1&course_id=_2050858_1&content_id%=D_ Aplicaciones M Gmail YouTube Maps Noticias Traducir * Question Completion Status: A health researcher read that a 150-pound college-aged, male can burn an average of 530 calories per hour playing tennis with a standard deviation of 25 calories. 40 college-aged males were randomly selected at a commuter school and the mean number of calories burned per hour playing tennis was 540 calories. Do college-aged male tennis players at the commuter school burn more calories per hour than the college-aged,male tennis player population? Test with a 0.05 significance level. What is the probability of Z obr? (round to nearest hundredth)arrow_forward> Finals Schedule - Bb Collabo O x Lorg/webapps/assessment/take/launch.jsp?course_assessment_id%3D_43176 1&course_id%3_41581_1&contes cemaining Time: 1 hour, 10 minutes, 35 seconds. Question Completion Status: QUESTION 18 A football is kicked up into the air. The height of the football can be modeled as a function of time as shown by the equation, h(t) = -4t2 + 18t, where h is the height of the football in feet, and t is the time in seconds. How many seconds did it take for the football to réach the ground after it was kicked? O 20.25 seconds O 2.25 seconds O 9 seconds O 4.5 seconds QUESTION 19 Find the missing length Click Save and Submit to save and subinit, Click Saue All Anstuers to save all answers.arrow_forward
- https://www.dcourier.com/photos/2018/may/26/984960336/arrow_forwardSjfuRKgaZju7NvIBwKOFNns"%5D%2C"action"%3A". 106% 9. If MZVST = (5x+23)° and MZVUT = (8x – 49)°, find MZSVT. Bメー4ニラメト23 5 xt23 = 190 20°arrow_forwardSahar Rasoul-Math 7 End of Yea X Gspy ninjas book-Google docs.google.com/spreadsheets/d/1j5MotWzsc0V1V3Qyl4rbP_OFOUotaNXCIIFax> Copy of Copy of Col... 8.8 Sahar Rasoul - Math 7 End of Year Digital Task Cards Student Version ☆ File Edit View Insert Format Data Tools Extensions Help Last edit was 5 minu $ % .0 .00 123 Century Go... ▼ 18 Y BIS fx| =IF(B4="Question 1", Sheet2! H21, if(B4="Question 2", Sheet2! H22, IF(B4=" n 100% 36:816 A B C 6 16 A flashlight can light a circular area of up to 6 feet in diameter. What is the maximum area that can be lit? Round to the nearest tenth. 30x 0004 15 A Sheet1 https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.amazon.com%2FSpy-Ninjas-Ultimate-Guidebook-Scholastic%2Fdp 7 8 9 10 11 12 13 14 3 5. 7. a 5 $9 Aarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Trigonometry (MindTap Course List)TrigonometryISBN:9781305652224Author:Charles P. McKeague, Mark D. TurnerPublisher:Cengage LearningAlgebra & Trigonometry with Analytic GeometryAlgebraISBN:9781133382119Author:SwokowskiPublisher:CengageGlencoe Algebra 1, Student Edition, 9780079039897...AlgebraISBN:9780079039897Author:CarterPublisher:McGraw Hill

Trigonometry (MindTap Course List)
Trigonometry
ISBN:9781305652224
Author:Charles P. McKeague, Mark D. Turner
Publisher:Cengage Learning
Algebra & Trigonometry with Analytic Geometry
Algebra
ISBN:9781133382119
Author:Swokowski
Publisher:Cengage

Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill