Skip to main content

Orders of magnitude (time)

 

Orders of magnitude (time)

10−12picosecondpsOne trillionth of one second1 ps: mean lifetime of a bottom quark; light travels 0.3 millimeters (mm)
1 ps: typical lifetime of a transition state
4 ps: Time to execute one machine cycle by an IBM silicon-germanium transistor
109 ps: Period of the photon corresponding to the hyperfine transition of the ground state of cesium-133, and one 9,192,631,770th of one second by definition
114.6 ps: Time for the fastest overclocked processor As of 2014 to execute one machine cycle.[9]
10−9nanosecondnsOne billionth of one second1 ns: Time to execute one machine cycle by a 1 GHz microprocessor
1 ns: Light travels 30 cm (12 in)
10−6microsecondµsOne millionth of one second1 µs: Time to execute one machine cycle by an Intel 80186 microprocessor
2.2 µs: Lifetime of a muon
4–16 µs: Time to execute one machine cycle by a 1960s minicomputer
10−3millisecondmsOne thousandth of one second1 ms: time for a neuron in human brain to fire one impulse and return to rest[10]
4–8 ms: typical seek time for a computer hard disk
10−21 centisecondcsOne hundredth of one second1–2 cs (=0.01–0.02 s): Human reflex response to visual stimuli
1.6667 cs period of a frame at a frame rate of 60 Hz.
2 cs: cycle time for European 50 Hz AC electricity
10−11 deciseconddsOne tenth of a second1–4 ds (=0.1–0.4 s): Blink of an eye[1
Multiples                 Unit            Symbol
6×101 seconds   1 minute            m
6×101 minutes   1 hourh (hr)      h
2.4×101 hours    1 day                 d






Popular posts from this blog

deploying Machine learning Model : pkl, Flask,postman

1)Create model and train          #  importing Librarys         import pandas as pd         import numpy as np         import matplotlib . pyplot as plt         import seaborn as sns         import requests         from pickle import dump , load         # Load Dataset         url = "http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data"         names = [ "sepal_length" , "sepal_width" , "petal_length" , "petal_width" , "species" ]         # Loading Dataset         df = pd . read_csv ( url , names = names )         df . tail ( 11 )         df . columns         test = [         { 'sepal_length' : 5.1 , 'sepal_width' : 3.5 , 'peta...

Binomial Distribution

  The binomial distribution formula is:                                                    b(x; n, P) =  n C x  * P x  * (1 – P) n – x Where: b = binomial probability x = total number of “successes” (pass or fail, heads or tails etc.) P = probability of a success on an individual trial n = number of trials Note:  The binomial distribution formula can also be written in a slightly different way, because  n C x  = n! / x!(n – x)! (this binomial distribution formula uses factorials  (What is a factorial? ). “q” in this formula is just the probability of failure (subtract your probability of success from 1). Using the First Binomial Distribution Formula The binomial distribution formula can calculate the probability of success for binomial distributions. Often you’ll be told to “plug in” the numbers to the  formul...

cammand for installing library in python

 Command for installing in jupyter notebook:                pip install library_name                ex. pip install nump installing from anaconda prompt:           1. pip install numpy           2.   conda install -c conda-forge matplotlib search for conda command for matplotlib and go to official website. Installing from anaconda navigator easy. Somtime give error then open as administrator