Question

In: Physics

Use a computer to make two plots of the Boltzmann, Fermi-Dirac, and Bose-Einstein distributions functions versus...

Use a computer to make two plots of the Boltzmann, Fermi-Dirac, and Bose-Einstein distributions functions versus x=(LaTeX: \epsilon-\mu ϵ − μ )/kT. For one make both axes linear. For the other make the y-axis logarithmic, and indicate the x- and y- ranges where the distribution functions agree to better than one percent.

Solutions

Expert Solution

Please find the attached plots. I wrote a code in python to generate this graph. I am attaching the code for your convenience.

Python code

from math import *
import numpy as np
import matplotlib.pyplot as plt
X=np.linspace(0.0001,10, 5000)
fdd=[1/(exp(x)+1) for x in X ]
bee=[1/(exp(x)-1) for x in X]
btt=[exp(-x) for x in X]
plt.plot(X,fdd, label='Fermi Dirac distribution')
plt.plot(X,bee, label='Bose einstein distribution' )
plt.plot(X,btt, label='Boltzmann distribution')
plt.legend()
plt.yscale('log')
plt.ylabel('f(x)')
plt.ylim(0,5)
plt.xlabel('x=(e-\u03bc)/kbT')
plt.title('logarithmic plot')
plt.savefig('distribution_logarithmic.png')
plt.yscale('linear')
plt.title('linear plot')
plt.savefig('distribution_linear.png')


Related Solutions

Describe the Bose-Einstein, Fermi-Dirac, Maxwell-Boltzmann distribution functions and compare.
Describe the Bose-Einstein, Fermi-Dirac, Maxwell-Boltzmann distribution functions and compare.
1) Derive the Fermi Dirac statistical distribution law. 2) Compare the three statistics Maxwell-Boltzmann statistics,Bose-Einstein statistics,Fermi-Dirac...
1) Derive the Fermi Dirac statistical distribution law. 2) Compare the three statistics Maxwell-Boltzmann statistics,Bose-Einstein statistics,Fermi-Dirac Statistics.
we have the following statistics. maxwell-boltzmann, fermi-dirac and bose-einstein. when then sonsidering different systems which above...
we have the following statistics. maxwell-boltzmann, fermi-dirac and bose-einstein. when then sonsidering different systems which above statistics would fit the best, give a short answer of why. a) He4 under normal room conditions of temperature and pressure b) electrons in copper under normal room conditions c) He4 at lambda point d) electrons and holes in a semiconductor Ge in room temperature, band gap 1V
1.Define terms and explain the difference between Boltzmann Statistic, Fermi-Dirac Statistic and Bose-Einstein statistic. 2. Give...
1.Define terms and explain the difference between Boltzmann Statistic, Fermi-Dirac Statistic and Bose-Einstein statistic. 2. Give an example for each of system in order to understand and handle aformentioned statistics. 3.Show that in a given circumstances Quantum statistics ignore or pass over classical statistic.
1-Explain specific features of Einstein and Debye models for the specific heat. 2-Recall the Fermi-Dirac distribution....
1-Explain specific features of Einstein and Debye models for the specific heat. 2-Recall the Fermi-Dirac distribution. 3-Recall the expression for electron density of states of electron gas.
Complete derivation of the infinite square well without the use of dirac delta functions. Please show...
Complete derivation of the infinite square well without the use of dirac delta functions. Please show every single step. I know this is long but Thanks Alot.
Chemists use plots of solubility of a slightly soluble salt (y-axis) versus concentration of some other...
Chemists use plots of solubility of a slightly soluble salt (y-axis) versus concentration of some other reagent(x-axis) to describe solubility behavior. Sketch plots labeling the axes for the following situations: A: the solubility of BaCO3 as HNO3 is added B: the solubility of BaCO3 as Na2CO3 is added C: the solubility of BaCO3 as NaNO3 is added
Write a program using multiple functions. Make use of an array to store data Make use...
Write a program using multiple functions. Make use of an array to store data Make use of searching techniques Read data from a file Write data to a file Instructions: In this lab, you will be examining a set of stock collected over a twenty four day period. Be sure to make use of an array to store these stocks. You will be required to read in the data points from a file. Write a function to read in the...
Identify two competing enterprises and their supply chains (e.g., Dell Computer versus Apple; Amazon versus Wal-Mart;...
Identify two competing enterprises and their supply chains (e.g., Dell Computer versus Apple; Amazon versus Wal-Mart; Toyota versus GM; UPS versus FedEx). Identify the elements of each chain from source of supply to final customer, and explain how the two chains are meeting (or not meeting) business objectives. Which supply chain appears longer? Does the structure of one appear simpler than the other?
write a MATLAB script that plots the two functions ( y=(2x^2)-(3x)-4 and y=4sin(2Pix) - 1 )...
write a MATLAB script that plots the two functions ( y=(2x^2)-(3x)-4 and y=4sin(2Pix) - 1 ) in the same figure for x in [-1,3]. Add a title, x-label, y-label, and legend. ( MATLAB code and graph with all descriptions.)
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT