Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

Concept explainers

Question

need help with python.

can modify/ refer from the code below

import numpy as np; from pylab import *;
import scipy.optimize
hdata=[3.24, 2.68, 2.35, 1.87, 2.57,2.77]
tdata=[0.81, 0.74, 0.69, 0.61, 0.72, 0.75];
error_in_t=np.ones(6)*0.1

def t(h,g):
return (2*h/g)**0.5

results=scipy.optimize.curve_fit(t,hdata,tdata,sigma=error_in_t,absolute_sigma=True)

gbest=results[0][0];
var=results[1][0][0];
se=var**0.5
print(gbest)
print(var,se)
Q1 Measuring gravity by dropping a ball in a vacuum
In an experiment, a ball was dropped through a vertial distnace from rest. The vertical distance tranversed and the corresponding time interval
measured at these distances were 3.24, 2.68, 2.35, 1.87, 2.57,2.77 meters, with the corresponding time intervals 0.81, 0.74, 0.69, 0.61, 0.72,
0.75 seconds. The time intervals are measured with an error bar of 0.1 second. Determine the best-fit value of g by fitting the data points
against the formula h = gt² by taking into accont the error in time the time interval. Be reminded that the argument 'sigma' and
'absolut_sigma=True' in scipy.optimize.curve_fit() are associated with the error bar in h (not At).
Hint : You have to calculate Ah for each pair of h;, t;.
2h
Hint : Your result should be the same (or almost the same) as that obtained using t =
expand button
Transcribed Image Text:Q1 Measuring gravity by dropping a ball in a vacuum In an experiment, a ball was dropped through a vertial distnace from rest. The vertical distance tranversed and the corresponding time interval measured at these distances were 3.24, 2.68, 2.35, 1.87, 2.57,2.77 meters, with the corresponding time intervals 0.81, 0.74, 0.69, 0.61, 0.72, 0.75 seconds. The time intervals are measured with an error bar of 0.1 second. Determine the best-fit value of g by fitting the data points against the formula h = gt² by taking into accont the error in time the time interval. Be reminded that the argument 'sigma' and 'absolut_sigma=True' in scipy.optimize.curve_fit() are associated with the error bar in h (not At). Hint : You have to calculate Ah for each pair of h;, t;. 2h Hint : Your result should be the same (or almost the same) as that obtained using t =
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education