Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
SlideShare a Scribd company logo
Homework 1
Dai - Nam Le
In[212]:= ClearAll "Global` "
1) Define a FCC lattice a×a×a with a = 2
In mathematica, there are lattice data for all Bravais lattices.
In[213]:= LatticeData "FaceCenteredCubic", "Image"
Out[213]=
2) Define basis vectors
Lattice data in mathematica also provide information about basis vectors of Bravais lattice
In[214]:= a1, a2, a3 LatticeData "FaceCenteredCubic", "Basis"
Out[214]= 1, 1, 0 , 1, 1, 0 , 0, 1, 1
Constructing FCC lattice via basis vectors
In[215]:= FCCPoints n1_, n2_, n3_ : n1 a1 n2 a2 n3 a3;
FCCList ;
n 6;
amax 2;
For n1 n, n1 n, n1 ,
For n2 n, n2 n, n2 ,
For n3 n, n3 n, n3 ,
If Table FCCPoints n1, n2, n3 i amax &&
FCCPoints n1, n2, n3 i amax, i, 1, 3 True, True, True ,
FCCList Join FCCList, FCCPoints n1, n2, n3
basis Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , a1 , .025 ,
Arrow Tube 0, 0, 0 , a2 , .025 , Arrow Tube 0, 0, 0 , a3 , .025 ;
gridlines ParametricPlot3D 0, 0, t , 2, 0, t , 0, 2, t , 0, 2, t ,
2, 0, t , 2, 2, t , 2, 2, t , 2, 2, t , 2, 2, t , 0, t, 0 ,
2, t, 0 , 0, t, 2 , 0, t, 2 , 2, t, 0 , 2, t, 2 , 2, t, 2 ,
2, t, 2 , 2, t, 2 , t, 0, 0 , t, 2, 0 , t, 0, 2 , t, 0, 2 ,
t, 2, 0 , t, 2, 2 , t, 2, 2 , t, 2, 2 , t, 2, 2 ,
t, amax, amax , PlotRange amax, amax , amax, amax , amax, amax ,
PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ;
FCCLattice ListPointPlot3D FCCList, PlotStyle AbsolutePointSize 10. ,
AspectRatio 1, PlotRange amax, amax , amax, amax , amax, amax ;
Show FCCLattice, basis, gridlines
Out[223]=
2
1
0
1
2
2
1
0
1
2
2
1
0
1
2
3) Find reciprocal lattice ’s basis vectors
To find reciprocal lattice ‘s basis vectors, we must solve the following system of equations
2 HW1_Nam.nb
In[224]:= b1 b1x, b1y, b1z ;
b2 b2x, b2y, b2z ;
b3 b3x, b3y, b3z ;
sol
Solve Flatten Table ai.bj 2 Π KroneckerDelta i, j , i, 1, 3 , j, 1, 3 ,
b1x, b1y, b1z, b2x, b2y, b2z, b3x, b3y, b3z ;
b1x b1x . sol 1 ;
b1y b1y . sol 1 ;
b1z b1z . sol 1 ;
b2x b2x . sol 1 ;
b2y b2y . sol 1 ;
b2z b2z . sol 1 ;
b3x b3x . sol 1 ;
b3y b3y . sol 1 ;
b3z b3z . sol 1 ;
In[237]:= b1, b2, b3
Out[237]= Π, Π, Π , Π, Π, Π , 0, 0, 2 Π
Comparing with BCC basis
In[238]:= LatticeData "BodyCenteredCubic", "Basis"
Out[238]= 2, 0, 0 , 0, 2, 0 , 1, 1, 1
4) Buid reciprocal lattice
HW1_Nam.nb 3
In[239]:= ReciprocalPoints n1_, n2_, n3_ : n1 b1 n2 b2 n3 b3;
ReciprocalList ;
n 3;
bmax 2 Π;
For n1 n, n1 n, n1 ,
For n2 n, n2 n, n2 ,
For n3 n, n3 n, n3 ,
If Table FCCPoints n1, n2, n3 i bmax &&
FCCPoints n1, n2, n3 i bmax, i, 1, 3 True, True, True ,
ReciprocalList Join ReciprocalList, ReciprocalPoints n1, n2, n3
Reciprocalbasis
Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , b1 , .025 ,
Arrow Tube 0, 0, 0 , b2 , .025 , Arrow Tube 0, 0, 0 , b3 , .025 ;
Reciprocalgridlines ParametricPlot3D 0, 0, t , 2 Π, 0, t ,
0, 2 Π, t , 0, 2 Π, t , 2 Π, 0, t , 2 Π, 2 Π, t ,
2 Π, 2 Π, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 0, t, 0 ,
2 Π, t, 0 , 0, t, 2 Π , 0, t, 2 Π , 2 Π, t, 0 , 2 Π, t, 2 Π ,
2 Π, t, 2 Π , 2 Π, t, 2 Π , 2 Π, t, 2 Π , t, 0, 0 ,
t, 2 Π, 0 , t, 0, 2 Π , t, 0, 2 Π , t, 2 Π, 0 , t, 2 Π, 2 Π ,
t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, bmax, bmax ,
PlotRange bmax, bmax , bmax, bmax , bmax, bmax ,
PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ;
ReciprocalLattice ListPointPlot3D ReciprocalList,
PlotStyle AbsolutePointSize 10. , AspectRatio 1,
PlotRange bmax, bmax , bmax, bmax , bmax, bmax ;
Show ReciprocalLattice, Reciprocalbasis, Reciprocalgridlines
Out[247]=
5
0
5
5
0
5
5
0
5
4 HW1_Nam.nb
In[248]:= Clear n1, n2, n3
sol2 Solve ReciprocalPoints n1, n2, n3 kx, ky, kz , kx, ky, kz ;
kx kx . sol2 1 ;
ky ky . sol2 1 ;
kz kz . sol2 1 ;
Represent reciprocal vector in Cartesian coordinates
In[253]:= Print "on kx ", kx
Print "on ky ", ky
Print "on kz ", kz
on kx n1 Π n2 Π
on ky n1 Π n2 Π
on kz n1 Π n2 Π 2 n3 Π
5) [1,0,0]; [1,1,0] and [1,1,1]
a) on [1,0,0] direction
In[256]:= Clear n1, n2, n3, temp, min
temp Solve ky 0, kz 0 , n2, n3 ;
n2 n2 . temp 1 ;
n3 n3 . temp 1 ;
min Minimize kx2
ky2
kz2
, kx2
ky2
kz2
0, kx 0 , n1, Integers ;
n1 n1 . min 2 ;
In[262]:= kmin100 kx, ky, kz
Out[262]= 2 Π, 0, 0
b) on [1,1,0] direction
In[263]:= Clear n1, n2, n3, temp, min
temp Solve ky kx, kz 0 , n2, n3 ;
n2 n2 . temp 1 ;
n3 n3 . temp 1 ;
min Minimize kx2
ky2
kz2
, kx2
ky2
kz2
0, kx 0 , n1, Integers ;
n1 n1 . min 2 ;
In[269]:= kmin110 kx, ky, kz
Out[269]= Π, Π, 0
c) on [1,1,1] direction
In[270]:= Clear n1, n2, n3, temp, min
temp Solve ky kx, kz kx , n2, n3 ;
n2 n2 . temp 1 ;
n3 n3 . temp 1 ;
min Minimize kx2
ky2
kz2
, kx2
ky2
kz2
0, kx 0 , n1, Integers ;
n1 n1 . min 2 ;
In[276]:= kmin111 kx, ky, kz
Out[276]= Π, Π, Π
6) Dispersion relation on kx = [100] axis
HW1_Nam.nb 5
Define high symmetry points along kx axis: point and X point
In[277]:= point 0, 0, 0 ;
Xpoint
point kmin100
2
;
point
In[279]:= point
Out[279]= 0, 0, 0
Xpoint
In[280]:= Xpoint
Out[280]= Π, 0, 0
Dispersion relation from to X (a = 2, hbar = 1, m = 1)
In[281]:= m 1;
Plot Evaluate Flatten
Table
1
2
t, 0, 0 m1 b1 m2 b2 m3 b3 . t, 0, 0 m1 b1 m2 b2 m3 b3 ,
m1, m, m , m2, m, m , m3, m, m , t, point 1 , Xpoint 1 ,
PlotRange Full, Ticks 0,
Π
4
,
Π
2
,
3 Π
4
, Π , Automatic ,
PlotStyle ColorData 35, "ColorList" , Thick ,
PlotLegends Flatten Table " " ToString m1 " " ToString m2
" " ToString m3 " ", m1, m, m , m2, m, m , m3, m, m
Out[282]=
Π
4
Π
2
3 Π
4
Π
20
40
60
80
100 1 1 1
1 1 0
1 1 1
1 0 1
1 0 0
1 0 1
1 1 1
1 1 0
1 1 1
0 1 1
0 1 0
0 1 1
0 0 1
0 0 0
0 0 1
0 1 1
0 1 0
0 1 1
1 1 1
1 1 0
1 1
1 0
1 0 0
1 0 1
1 1
1 1 0
1 1 1
6 HW1_Nam.nb

More Related Content

What's hot

Iit jee question_paper
Iit jee question_paperIit jee question_paper
Iit jee question_paper
RahulMishra774
 
Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6
Daniel Hong
 
lecture 15
lecture 15lecture 15
lecture 15
sajinsc
 
Higher formal homeworks unit 2
Higher formal homeworks   unit 2Higher formal homeworks   unit 2
Higher formal homeworks unit 2
sjamaths
 
Stressen's matrix multiplication
Stressen's matrix multiplicationStressen's matrix multiplication
Stressen's matrix multiplication
Kumar
 
Tutorial no. 1.doc
Tutorial no. 1.docTutorial no. 1.doc
Tutorial no. 1.doc
Shankar Gangaju
 
International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI) International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI)
inventionjournals
 
Chapter 3 classroom
Chapter 3 classroomChapter 3 classroom
Chapter 3 classroom
wellingb
 
Quadrature
QuadratureQuadrature
Quadrature
Linh Tran
 
Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)
Lina Manriquez
 
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
Parhamsagharchi
 
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLABMathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
COMSATS Abbottabad
 
Residues in MATLAB
Residues in MATLABResidues in MATLAB
Residues in MATLAB
Patrick Trivilin Rodrigues
 
Day 7 examples u6w14
Day 7 examples u6w14Day 7 examples u6w14
Day 7 examples u6w14
jchartiersjsd
 
Prim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithmPrim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithm
Acad
 
Calculus :Tutorial 2
Calculus :Tutorial 2Calculus :Tutorial 2
Calculus :Tutorial 2
Nuril Ekma
 
AP Calculus 1984 FRQs
AP Calculus 1984 FRQsAP Calculus 1984 FRQs
AP Calculus 1984 FRQs
A Jorge Garcia
 
Numerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_RuleNumerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_Rule
Alex_5991
 
Gaussian Quadrature Formula
Gaussian Quadrature FormulaGaussian Quadrature Formula
Gaussian Quadrature Formula
Dhaval Shukla
 

What's hot (19)

Iit jee question_paper
Iit jee question_paperIit jee question_paper
Iit jee question_paper
 
Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6
 
lecture 15
lecture 15lecture 15
lecture 15
 
Higher formal homeworks unit 2
Higher formal homeworks   unit 2Higher formal homeworks   unit 2
Higher formal homeworks unit 2
 
Stressen's matrix multiplication
Stressen's matrix multiplicationStressen's matrix multiplication
Stressen's matrix multiplication
 
Tutorial no. 1.doc
Tutorial no. 1.docTutorial no. 1.doc
Tutorial no. 1.doc
 
International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI) International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI)
 
Chapter 3 classroom
Chapter 3 classroomChapter 3 classroom
Chapter 3 classroom
 
Quadrature
QuadratureQuadrature
Quadrature
 
Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)
 
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
 
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLABMathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
 
Residues in MATLAB
Residues in MATLABResidues in MATLAB
Residues in MATLAB
 
Day 7 examples u6w14
Day 7 examples u6w14Day 7 examples u6w14
Day 7 examples u6w14
 
Prim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithmPrim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithm
 
Calculus :Tutorial 2
Calculus :Tutorial 2Calculus :Tutorial 2
Calculus :Tutorial 2
 
AP Calculus 1984 FRQs
AP Calculus 1984 FRQsAP Calculus 1984 FRQs
AP Calculus 1984 FRQs
 
Numerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_RuleNumerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_Rule
 
Gaussian Quadrature Formula
Gaussian Quadrature FormulaGaussian Quadrature Formula
Gaussian Quadrature Formula
 

Similar to Homework 1 of Optical Semiconductor

M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docxM210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
smile790243
 
Determinants
DeterminantsDeterminants
Determinants
Joey Valdriz
 
Karnaugh maps
Karnaugh mapsKarnaugh maps
Karnaugh maps
AJAL A J
 
Unit 3
Unit 3Unit 3
Unit 3
Unit 3Unit 3
Unit 3
guna287176
 
Idea for ineractive programming language
Idea for ineractive programming languageIdea for ineractive programming language
Idea for ineractive programming language
Lincoln Hannah
 
jammer_placement
jammer_placementjammer_placement
jammer_placement
M. Reza Gholami
 
Econometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualEconometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions Manual
LewisSimmonss
 
Chapter 7: Matrix Multiplication
Chapter 7: Matrix MultiplicationChapter 7: Matrix Multiplication
Chapter 7: Matrix Multiplication
Heman Pathak
 
Catholic High Emath Paper1
Catholic High Emath Paper1Catholic High Emath Paper1
Catholic High Emath Paper1
Felicia Shirui
 
Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...
Vladimir Bakhrushin
 
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer keyNbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
MD Kutubuddin Sardar
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theorem
Wathna
 
UNIT I_3.pdf
UNIT I_3.pdfUNIT I_3.pdf
UNIT I_3.pdf
Muthukumar P
 
TikZ for economists
TikZ for economistsTikZ for economists
TikZ for economists
kevingoulding
 
射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介
Simen Li
 
RF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF TransceiversRF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF Transceivers
Simen Li
 
CN_slides.pdf
CN_slides.pdfCN_slides.pdf
CN_slides.pdf
IlkerYuksek
 
determinants-160504230830.pdf
determinants-160504230830.pdfdeterminants-160504230830.pdf
determinants-160504230830.pdf
Praveen Kumar Verma PMP
 
determinants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdfdeterminants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdf
TGBSmile
 

Similar to Homework 1 of Optical Semiconductor (20)

M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docxM210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
 
Determinants
DeterminantsDeterminants
Determinants
 
Karnaugh maps
Karnaugh mapsKarnaugh maps
Karnaugh maps
 
Unit 3
Unit 3Unit 3
Unit 3
 
Unit 3
Unit 3Unit 3
Unit 3
 
Idea for ineractive programming language
Idea for ineractive programming languageIdea for ineractive programming language
Idea for ineractive programming language
 
jammer_placement
jammer_placementjammer_placement
jammer_placement
 
Econometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualEconometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions Manual
 
Chapter 7: Matrix Multiplication
Chapter 7: Matrix MultiplicationChapter 7: Matrix Multiplication
Chapter 7: Matrix Multiplication
 
Catholic High Emath Paper1
Catholic High Emath Paper1Catholic High Emath Paper1
Catholic High Emath Paper1
 
Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...
 
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer keyNbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theorem
 
UNIT I_3.pdf
UNIT I_3.pdfUNIT I_3.pdf
UNIT I_3.pdf
 
TikZ for economists
TikZ for economistsTikZ for economists
TikZ for economists
 
射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介
 
RF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF TransceiversRF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF Transceivers
 
CN_slides.pdf
CN_slides.pdfCN_slides.pdf
CN_slides.pdf
 
determinants-160504230830.pdf
determinants-160504230830.pdfdeterminants-160504230830.pdf
determinants-160504230830.pdf
 
determinants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdfdeterminants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdf
 

More from Lê Đại-Nam

[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theory[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theory
Lê Đại-Nam
 
Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)
Lê Đại-Nam
 
Lecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 IntroductionLecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 Introduction
Lê Đại-Nam
 
Lecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General RelativityLecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General Relativity
Lê Đại-Nam
 
Lecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before EinsteinLecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before Einstein
Lê Đại-Nam
 
Lecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special RelativityLecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special Relativity
Lê Đại-Nam
 
Essay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiationEssay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiation
Lê Đại-Nam
 
Essay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equationEssay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equation
Lê Đại-Nam
 
Homework 5 of QFT
Homework 5 of QFTHomework 5 of QFT
Homework 5 of QFT
Lê Đại-Nam
 
Homework 4 of QFT
Homework 4 of QFTHomework 4 of QFT
Homework 4 of QFT
Lê Đại-Nam
 
Homework 3 of QFT
Homework 3 of QFTHomework 3 of QFT
Homework 3 of QFT
Lê Đại-Nam
 
Homework 2 of Unifying interaction
Homework 2 of Unifying interactionHomework 2 of Unifying interaction
Homework 2 of Unifying interaction
Lê Đại-Nam
 
Homework 6 of Optical Semiconductor
Homework 6 of Optical SemiconductorHomework 6 of Optical Semiconductor
Homework 6 of Optical Semiconductor
Lê Đại-Nam
 
Homework 5 of Optical Semiconductor
Homework 5 of Optical SemiconductorHomework 5 of Optical Semiconductor
Homework 5 of Optical Semiconductor
Lê Đại-Nam
 
Homework 4 of Optical Semiconductor
Homework 4 of Optical SemiconductorHomework 4 of Optical Semiconductor
Homework 4 of Optical Semiconductor
Lê Đại-Nam
 
Homework 2 of Optical Semiconductor
Homework 2 of Optical SemiconductorHomework 2 of Optical Semiconductor
Homework 2 of Optical Semiconductor
Lê Đại-Nam
 
Homework 3 of Optical Semiconductor
Homework 3 of Optical SemiconductorHomework 3 of Optical Semiconductor
Homework 3 of Optical Semiconductor
Lê Đại-Nam
 
Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.
Lê Đại-Nam
 
on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5
Lê Đại-Nam
 
Nguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent statesNguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent states
Lê Đại-Nam
 

More from Lê Đại-Nam (20)

[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theory[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theory
 
Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)
 
Lecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 IntroductionLecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 Introduction
 
Lecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General RelativityLecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General Relativity
 
Lecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before EinsteinLecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before Einstein
 
Lecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special RelativityLecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special Relativity
 
Essay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiationEssay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiation
 
Essay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equationEssay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equation
 
Homework 5 of QFT
Homework 5 of QFTHomework 5 of QFT
Homework 5 of QFT
 
Homework 4 of QFT
Homework 4 of QFTHomework 4 of QFT
Homework 4 of QFT
 
Homework 3 of QFT
Homework 3 of QFTHomework 3 of QFT
Homework 3 of QFT
 
Homework 2 of Unifying interaction
Homework 2 of Unifying interactionHomework 2 of Unifying interaction
Homework 2 of Unifying interaction
 
Homework 6 of Optical Semiconductor
Homework 6 of Optical SemiconductorHomework 6 of Optical Semiconductor
Homework 6 of Optical Semiconductor
 
Homework 5 of Optical Semiconductor
Homework 5 of Optical SemiconductorHomework 5 of Optical Semiconductor
Homework 5 of Optical Semiconductor
 
Homework 4 of Optical Semiconductor
Homework 4 of Optical SemiconductorHomework 4 of Optical Semiconductor
Homework 4 of Optical Semiconductor
 
Homework 2 of Optical Semiconductor
Homework 2 of Optical SemiconductorHomework 2 of Optical Semiconductor
Homework 2 of Optical Semiconductor
 
Homework 3 of Optical Semiconductor
Homework 3 of Optical SemiconductorHomework 3 of Optical Semiconductor
Homework 3 of Optical Semiconductor
 
Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.
 
on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5
 
Nguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent statesNguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent states
 

Recently uploaded

Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...
Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...
Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...
Murugan Solaiyappan
 
The membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERPThe membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERP
Celine George
 
Is Email Marketing Really Effective In 2024?
Is Email Marketing Really Effective In 2024?Is Email Marketing Really Effective In 2024?
Is Email Marketing Really Effective In 2024?
Rakesh Jalan
 
How to Store Data on the Odoo 17 Website
How to Store Data on the Odoo 17 WebsiteHow to Store Data on the Odoo 17 Website
How to Store Data on the Odoo 17 Website
Celine George
 
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptxNationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
CelestineMiranda
 
How to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 NotebookHow to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 Notebook
Celine George
 
Conducting exciting academic research in Computer Science
Conducting exciting academic research in Computer ScienceConducting exciting academic research in Computer Science
Conducting exciting academic research in Computer Science
Abhik Roychoudhury
 
2024 KWL Back 2 School Summer Conference
2024 KWL Back 2 School Summer Conference2024 KWL Back 2 School Summer Conference
2024 KWL Back 2 School Summer Conference
KlettWorldLanguages
 
Book Allied Health Sciences kmu MCQs.docx
Book Allied Health Sciences kmu MCQs.docxBook Allied Health Sciences kmu MCQs.docx
Book Allied Health Sciences kmu MCQs.docx
drtech3715
 
(T.L.E.) Agriculture: Essentials of Gardening
(T.L.E.) Agriculture: Essentials of Gardening(T.L.E.) Agriculture: Essentials of Gardening
(T.L.E.) Agriculture: Essentials of Gardening
MJDuyan
 
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Zuzana Mészárosová
 
Split Shifts From Gantt View in the Odoo 17
Split Shifts From Gantt View in the  Odoo 17Split Shifts From Gantt View in the  Odoo 17
Split Shifts From Gantt View in the Odoo 17
Celine George
 
ARCHITECTURAL PATTERNS IN HISTOPATHOLOGY pdf- [Autosaved].pdf
ARCHITECTURAL PATTERNS IN HISTOPATHOLOGY  pdf-  [Autosaved].pdfARCHITECTURAL PATTERNS IN HISTOPATHOLOGY  pdf-  [Autosaved].pdf
ARCHITECTURAL PATTERNS IN HISTOPATHOLOGY pdf- [Autosaved].pdf
DharmarajPawar
 
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUMENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
HappieMontevirgenCas
 
NLC Grade 3.................................... ppt.pptx
NLC Grade 3.................................... ppt.pptxNLC Grade 3.................................... ppt.pptx
NLC Grade 3.................................... ppt.pptx
MichelleDeLaCruz93
 
Delegation Inheritance in Odoo 17 and Its Use Cases
Delegation Inheritance in Odoo 17 and Its Use CasesDelegation Inheritance in Odoo 17 and Its Use Cases
Delegation Inheritance in Odoo 17 and Its Use Cases
Celine George
 
Capitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptxCapitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptx
CapitolTechU
 
Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17
Celine George
 
Webinar Innovative assessments for SOcial Emotional Skills
Webinar Innovative assessments for SOcial Emotional SkillsWebinar Innovative assessments for SOcial Emotional Skills
Webinar Innovative assessments for SOcial Emotional Skills
EduSkills OECD
 
Beyond the Advance Presentation for By the Book 9
Beyond the Advance Presentation for By the Book 9Beyond the Advance Presentation for By the Book 9
Beyond the Advance Presentation for By the Book 9
John Rodzvilla
 

Recently uploaded (20)

Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...
Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...
Lecture_Notes_Unit4_Chapter_8_9_10_RDBMS for the students affiliated by alaga...
 
The membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERPThe membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERP
 
Is Email Marketing Really Effective In 2024?
Is Email Marketing Really Effective In 2024?Is Email Marketing Really Effective In 2024?
Is Email Marketing Really Effective In 2024?
 
How to Store Data on the Odoo 17 Website
How to Store Data on the Odoo 17 WebsiteHow to Store Data on the Odoo 17 Website
How to Store Data on the Odoo 17 Website
 
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptxNationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
 
How to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 NotebookHow to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 Notebook
 
Conducting exciting academic research in Computer Science
Conducting exciting academic research in Computer ScienceConducting exciting academic research in Computer Science
Conducting exciting academic research in Computer Science
 
2024 KWL Back 2 School Summer Conference
2024 KWL Back 2 School Summer Conference2024 KWL Back 2 School Summer Conference
2024 KWL Back 2 School Summer Conference
 
Book Allied Health Sciences kmu MCQs.docx
Book Allied Health Sciences kmu MCQs.docxBook Allied Health Sciences kmu MCQs.docx
Book Allied Health Sciences kmu MCQs.docx
 
(T.L.E.) Agriculture: Essentials of Gardening
(T.L.E.) Agriculture: Essentials of Gardening(T.L.E.) Agriculture: Essentials of Gardening
(T.L.E.) Agriculture: Essentials of Gardening
 
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
 
Split Shifts From Gantt View in the Odoo 17
Split Shifts From Gantt View in the  Odoo 17Split Shifts From Gantt View in the  Odoo 17
Split Shifts From Gantt View in the Odoo 17
 
ARCHITECTURAL PATTERNS IN HISTOPATHOLOGY pdf- [Autosaved].pdf
ARCHITECTURAL PATTERNS IN HISTOPATHOLOGY  pdf-  [Autosaved].pdfARCHITECTURAL PATTERNS IN HISTOPATHOLOGY  pdf-  [Autosaved].pdf
ARCHITECTURAL PATTERNS IN HISTOPATHOLOGY pdf- [Autosaved].pdf
 
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUMENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
 
NLC Grade 3.................................... ppt.pptx
NLC Grade 3.................................... ppt.pptxNLC Grade 3.................................... ppt.pptx
NLC Grade 3.................................... ppt.pptx
 
Delegation Inheritance in Odoo 17 and Its Use Cases
Delegation Inheritance in Odoo 17 and Its Use CasesDelegation Inheritance in Odoo 17 and Its Use Cases
Delegation Inheritance in Odoo 17 and Its Use Cases
 
Capitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptxCapitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptx
 
Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17
 
Webinar Innovative assessments for SOcial Emotional Skills
Webinar Innovative assessments for SOcial Emotional SkillsWebinar Innovative assessments for SOcial Emotional Skills
Webinar Innovative assessments for SOcial Emotional Skills
 
Beyond the Advance Presentation for By the Book 9
Beyond the Advance Presentation for By the Book 9Beyond the Advance Presentation for By the Book 9
Beyond the Advance Presentation for By the Book 9
 

Homework 1 of Optical Semiconductor

  • 1. Homework 1 Dai - Nam Le In[212]:= ClearAll "Global` " 1) Define a FCC lattice a×a×a with a = 2 In mathematica, there are lattice data for all Bravais lattices. In[213]:= LatticeData "FaceCenteredCubic", "Image" Out[213]= 2) Define basis vectors Lattice data in mathematica also provide information about basis vectors of Bravais lattice In[214]:= a1, a2, a3 LatticeData "FaceCenteredCubic", "Basis" Out[214]= 1, 1, 0 , 1, 1, 0 , 0, 1, 1 Constructing FCC lattice via basis vectors
  • 2. In[215]:= FCCPoints n1_, n2_, n3_ : n1 a1 n2 a2 n3 a3; FCCList ; n 6; amax 2; For n1 n, n1 n, n1 , For n2 n, n2 n, n2 , For n3 n, n3 n, n3 , If Table FCCPoints n1, n2, n3 i amax && FCCPoints n1, n2, n3 i amax, i, 1, 3 True, True, True , FCCList Join FCCList, FCCPoints n1, n2, n3 basis Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , a1 , .025 , Arrow Tube 0, 0, 0 , a2 , .025 , Arrow Tube 0, 0, 0 , a3 , .025 ; gridlines ParametricPlot3D 0, 0, t , 2, 0, t , 0, 2, t , 0, 2, t , 2, 0, t , 2, 2, t , 2, 2, t , 2, 2, t , 2, 2, t , 0, t, 0 , 2, t, 0 , 0, t, 2 , 0, t, 2 , 2, t, 0 , 2, t, 2 , 2, t, 2 , 2, t, 2 , 2, t, 2 , t, 0, 0 , t, 2, 0 , t, 0, 2 , t, 0, 2 , t, 2, 0 , t, 2, 2 , t, 2, 2 , t, 2, 2 , t, 2, 2 , t, amax, amax , PlotRange amax, amax , amax, amax , amax, amax , PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ; FCCLattice ListPointPlot3D FCCList, PlotStyle AbsolutePointSize 10. , AspectRatio 1, PlotRange amax, amax , amax, amax , amax, amax ; Show FCCLattice, basis, gridlines Out[223]= 2 1 0 1 2 2 1 0 1 2 2 1 0 1 2 3) Find reciprocal lattice ’s basis vectors To find reciprocal lattice ‘s basis vectors, we must solve the following system of equations 2 HW1_Nam.nb
  • 3. In[224]:= b1 b1x, b1y, b1z ; b2 b2x, b2y, b2z ; b3 b3x, b3y, b3z ; sol Solve Flatten Table ai.bj 2 Π KroneckerDelta i, j , i, 1, 3 , j, 1, 3 , b1x, b1y, b1z, b2x, b2y, b2z, b3x, b3y, b3z ; b1x b1x . sol 1 ; b1y b1y . sol 1 ; b1z b1z . sol 1 ; b2x b2x . sol 1 ; b2y b2y . sol 1 ; b2z b2z . sol 1 ; b3x b3x . sol 1 ; b3y b3y . sol 1 ; b3z b3z . sol 1 ; In[237]:= b1, b2, b3 Out[237]= Π, Π, Π , Π, Π, Π , 0, 0, 2 Π Comparing with BCC basis In[238]:= LatticeData "BodyCenteredCubic", "Basis" Out[238]= 2, 0, 0 , 0, 2, 0 , 1, 1, 1 4) Buid reciprocal lattice HW1_Nam.nb 3
  • 4. In[239]:= ReciprocalPoints n1_, n2_, n3_ : n1 b1 n2 b2 n3 b3; ReciprocalList ; n 3; bmax 2 Π; For n1 n, n1 n, n1 , For n2 n, n2 n, n2 , For n3 n, n3 n, n3 , If Table FCCPoints n1, n2, n3 i bmax && FCCPoints n1, n2, n3 i bmax, i, 1, 3 True, True, True , ReciprocalList Join ReciprocalList, ReciprocalPoints n1, n2, n3 Reciprocalbasis Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , b1 , .025 , Arrow Tube 0, 0, 0 , b2 , .025 , Arrow Tube 0, 0, 0 , b3 , .025 ; Reciprocalgridlines ParametricPlot3D 0, 0, t , 2 Π, 0, t , 0, 2 Π, t , 0, 2 Π, t , 2 Π, 0, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 0, t, 0 , 2 Π, t, 0 , 0, t, 2 Π , 0, t, 2 Π , 2 Π, t, 0 , 2 Π, t, 2 Π , 2 Π, t, 2 Π , 2 Π, t, 2 Π , 2 Π, t, 2 Π , t, 0, 0 , t, 2 Π, 0 , t, 0, 2 Π , t, 0, 2 Π , t, 2 Π, 0 , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, bmax, bmax , PlotRange bmax, bmax , bmax, bmax , bmax, bmax , PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ; ReciprocalLattice ListPointPlot3D ReciprocalList, PlotStyle AbsolutePointSize 10. , AspectRatio 1, PlotRange bmax, bmax , bmax, bmax , bmax, bmax ; Show ReciprocalLattice, Reciprocalbasis, Reciprocalgridlines Out[247]= 5 0 5 5 0 5 5 0 5 4 HW1_Nam.nb
  • 5. In[248]:= Clear n1, n2, n3 sol2 Solve ReciprocalPoints n1, n2, n3 kx, ky, kz , kx, ky, kz ; kx kx . sol2 1 ; ky ky . sol2 1 ; kz kz . sol2 1 ; Represent reciprocal vector in Cartesian coordinates In[253]:= Print "on kx ", kx Print "on ky ", ky Print "on kz ", kz on kx n1 Π n2 Π on ky n1 Π n2 Π on kz n1 Π n2 Π 2 n3 Π 5) [1,0,0]; [1,1,0] and [1,1,1] a) on [1,0,0] direction In[256]:= Clear n1, n2, n3, temp, min temp Solve ky 0, kz 0 , n2, n3 ; n2 n2 . temp 1 ; n3 n3 . temp 1 ; min Minimize kx2 ky2 kz2 , kx2 ky2 kz2 0, kx 0 , n1, Integers ; n1 n1 . min 2 ; In[262]:= kmin100 kx, ky, kz Out[262]= 2 Π, 0, 0 b) on [1,1,0] direction In[263]:= Clear n1, n2, n3, temp, min temp Solve ky kx, kz 0 , n2, n3 ; n2 n2 . temp 1 ; n3 n3 . temp 1 ; min Minimize kx2 ky2 kz2 , kx2 ky2 kz2 0, kx 0 , n1, Integers ; n1 n1 . min 2 ; In[269]:= kmin110 kx, ky, kz Out[269]= Π, Π, 0 c) on [1,1,1] direction In[270]:= Clear n1, n2, n3, temp, min temp Solve ky kx, kz kx , n2, n3 ; n2 n2 . temp 1 ; n3 n3 . temp 1 ; min Minimize kx2 ky2 kz2 , kx2 ky2 kz2 0, kx 0 , n1, Integers ; n1 n1 . min 2 ; In[276]:= kmin111 kx, ky, kz Out[276]= Π, Π, Π 6) Dispersion relation on kx = [100] axis HW1_Nam.nb 5
  • 6. Define high symmetry points along kx axis: point and X point In[277]:= point 0, 0, 0 ; Xpoint point kmin100 2 ; point In[279]:= point Out[279]= 0, 0, 0 Xpoint In[280]:= Xpoint Out[280]= Π, 0, 0 Dispersion relation from to X (a = 2, hbar = 1, m = 1) In[281]:= m 1; Plot Evaluate Flatten Table 1 2 t, 0, 0 m1 b1 m2 b2 m3 b3 . t, 0, 0 m1 b1 m2 b2 m3 b3 , m1, m, m , m2, m, m , m3, m, m , t, point 1 , Xpoint 1 , PlotRange Full, Ticks 0, Π 4 , Π 2 , 3 Π 4 , Π , Automatic , PlotStyle ColorData 35, "ColorList" , Thick , PlotLegends Flatten Table " " ToString m1 " " ToString m2 " " ToString m3 " ", m1, m, m , m2, m, m , m3, m, m Out[282]= Π 4 Π 2 3 Π 4 Π 20 40 60 80 100 1 1 1 1 1 0 1 1 1 1 0 1 1 0 0 1 0 1 1 1 1 1 1 0 1 1 1 0 1 1 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1 0 1 1 0 1 0 0 1 1 1 1 1 1 1 0 1 1 1 0 1 0 0 1 0 1 1 1 1 1 0 1 1 1 6 HW1_Nam.nb