Tuesday, 10 May 2011

Combinatorics (NSS core)

Combinatorics
We will try to analysis the combinatorial questions logically steps by steps here. This is a way of analyzing question, not the way to answer the question. Using this analytical method it's very easy to give out the required formula.

Definition of set
S = {a1,a2,…an}, there are n elements. We can say |S| = n.
Now we analysis the combinatorial questions by putting the "possible choice" as the elements.
Example 1: Choose one from apple, orange and banana, in how many ways you can choose?
The possible choice (S) = {Apple, orange, banana}, |S| = 3
Therefore we have 3 choice.

In the case when we choose more than one
Example 2: There're 3 coins, $1, $2 and $5 respectively. In how many ways we can choose two of them?
Since combination is not yet introduced, we use counting here.
The possible choice (S) = {$1+$2, $1+$5, $2+$5}, |S| = 3.
This is the expression when we choose more than one.

Remember, we only choose one from the set only.

Adding principle
We say "we have |A|+|B| choices when we choose one from A OR choose one from B."
Mathematically, |A|+|B| = |A+B|. We can visualize this result easily.
For example, A = {apple, orange} and B = {banana}. Choosing one from A or B would gives {apple, orange and banana}. Which gives 3 choice = 2+1.
Example 3: In a restaurant providing Chinese and Japanese dish, there're 7 Chinese and 9 Japanese dishes available. In how many ways we can choose one from it?
We have |Chinese dish| = 7, |Japanese dish| = 9, so |Chinese dish OR Japanese dish| = 7+9 which is 16.

Multiplying principle
We say "we have |A|x|B| choices when we choose one from A AND choose one from B."
Consider A = {a1,a2,…ax}, B = {b1,b2,…by}, then one from A and one from B gives S = {a1+b1,…a1+by,a2+b1,…ax+by} which gives |A| x |B|.
Example 4: In the restaurant there're 7 Chinese dishes and 4 types of soup. In how many ways we can choose one dish and one soup?
Consider |Chinese dish| = 7, |soup| = 4, we have 7*4 = 28 choices.
Full arrangement
When we arrange n elements in order, there're n! choices.
Proof: You have n choices to put the first elements, (n-1) choice to put the second elements…totally giving you 1*2*3*…*(n-1)*n = n! choices.
Example 5: In how many ways we can arrange 5 letters, "A,B,C,D,E" in order?
We have 5! = 120 choices.

Repetitions
When we arrange n elements in order, with x of them is the same (identical), number of choices is given by n!/x!.
Example 6: In how many ways we can arrange 5 letters, "A,B,C,C,D" in order?
We have 5!/2! = 60 choices.
Example 7: A students claims that he get 1A, 2B and 2D in HKALE. How many different possible result he/she could get in the exam?
We have two repeated elements. The number of possibility is 5!/(2! * 2!) = 30.

Identical and different elements
Identical elements mean that the permutations are useless. For example, you can't arrange "element x, element x" in order because they are the same.
Different elements means that it makes difference when you permute them, like apple and banana.

Permutation
The standard form of combination nPr is "choose r elements from n and arrange them in order"
nPr = n! / (n-r)!, we can visualize this: oooooooooxxxxxxxxxxxxxx
There're n elements, "o" is the r chosen elements and "x" is the n-r remaining elements.
Step 1) we arrange all of them in order.    : n!
Step 2) we know that the remaining elements are identical each other because we don't care their permutation.    : 1/(n-r)!
Therefore we get nPr = n!/(n-r)!
Example 8: In how many ways we arrange 7 of 10 teachers to teach 7 classes? (test)
We have 10P7 = 604800 ways.

Combination
The standard form of combination nCr is "choose r elements from n". Since we don't need permutation, elements are identical each other. For example, choosing "apple and banana" is same as choosing "banana and apple".
nCr = n! / [r! (n-r)!]
Example 9: In how many ways we can choose 10 distinct balls from 12?
We have 10C12 = 66 ways. , we can visualize this: oooooooooxxxxxxxxxxxxxx
There're n elements, "o" is the r chosen elements and "x" is the n-r remaining elements.
Step 1) we arrange all of them in order.    : n!
Step 2) we know that the remaining elements are identical each other because we don't care their permutation.    : 1/(n-r)!
Step 3) we don't care the permutation of chosen elements as well.     : 1/r!
Combining gives nCr = n! / [r! (n-r)!]
One important identities is that : nCr (r!) = nPr we have to permute the chosen elements.
Example 10: In how many ways we arrange 7 of 10 teachers to teach 7 classes? (test)
We can first choose 7 from 10, then permute them.
Number of ways = 10C7 * 7! = 604800.
Another identities is nCr = nC(n-r).
Mathematically they are the same and can be proved easily.
Visualizing the problem: Choosing r from n is equivalent to choosing (n-r) from n that is unwanted. So they are the same.

More complicated cases: elements and boxes
When we arrange teachers to classes, we can say "teachers" is the elements while "classes" is the boxes. In this case the classes are different each other, but sometimes they maybe the same.
Example 11:
a)       In how many ways we put 10 marbles into 5 different boxes with 2 marbles in each box?
We choose 2 from 10 in the first box, 8 from 2 in the second one and so on…
Number of ways = 10C2 * 8C2 * 6C2 * 4C2 * 2C2 = 113400
Alternative: the elements in the boxes are identical. There are 5 boxes so 5 times of repetition of 2 elements. There are 10 elements in total.
Number of ways = 10! / (2!)5 = 113400
b)       The above boxes are distributed to 5 people. In how many ways the marbles can be distributed to the people?
Note that we have 2 times of permutation here. The first one is marble to box, the second one of marble to people. Number of ways = 113400 * 120 = 13608000.
c)       In how many ways we put 10 marbles into 5 identical box with 2 marbles in each box?
Consider the permutation between the 5 identical box, number of ways = 113400/5! = 945.
Example 12: There're 3 boys and 4 girls. They are going to be arranged in a row.
a)       How many ways can be arrange them if two girls must at the two ends?
b)       How many ways can be arrange them no men are standing together?

We have two ways to solve (a).
Method 1:
1)       Select the two girls and put them at the two ends = 4C2 * 2! = 12
2)       Permute the remaining people = 5! = 120
Overall choices = 12*120 = 1440
Method 2:
1)       Arrange the boys to sit in the middle = 5P3 = 60
2)       Permute the girls for the remaining seats = 4! = 24
Overall choice = 60 * 24 = 1440
(b)
1) We permute the girls = 4! = 24
2) Boys can only standing at the side or between the girls, that implies that they have 5 possible position (oGoGoGoGo), so we have 5P3 = 60 choices
Overall choice = 24*60 = 1440.

Problems:
State the number of choices for the following cases:
1)       Choosing 5 girls and 4 boys from 10 boys and 10 girls.
2)       Permuting the words APPLE and BANANA.
3)       Choosing 3 girls and 5 boys from 8 boys and 8 girls and arrange them in a row for:
a)       No restriction.
b)       Two girls must be at the two ends.
c)       A particular boy must be arranged between two girls (GBG)
4)       There are 3 rows of seats. There are 4 seats per row. 6 people are sitting on some of the seats. For the number of arrangement if:
a)       No restriction
b)       A particular person must sit at the leftmost seat for any row.
c)       One of the rows has to be fully seated.
5)       There are 9 different marbles.
a)       Putting them into 3 identical boxes with 3 each.
b)       Putting them into 3 different boxes with 3 each.
c)       Putting them into 3 identical boxes with no restriction on number of marbles of each box (no marbles for a certain box is permitted).*
d)       Putting them into 3 identical boxes with no restriction on number of marbles of each box (no marbles for a certain box is NOT permitted).*
6)       N people are arranged in a circle table. Show that the number of arrangements is (N-1)!.*

Questions with * would be harder.

Problem set: Atomic world

Unit 1: Semi-classical view of atomic models.
1)       a) Describe the plum model.
b) Give one limitations of plum model, with mathematical interpretation.
2)       Concerning alpha particle scattering experiment:
a)       Explain why alpha particle and lead shield is used.
b)       With the light of plum model, explain why electron of the gold atom has negligible effect on the alpha particle.
c)       Account the possibility of 180º turnaround of alpha particle.
3)       An alpha particle of speed 3*107 ms-1 collide with a silver nucleus linearly and rebounds. Calculate the closest distance between the alpha particle and the silver nucleus.
4)       a) Give one limitation of Rutherford's atomic model.
b) Positron is produced under gamma radiation on a certain particles.
          i) It vanishes under collision with electron. Calculate the energy released in eV.
          ii) State one method to separate electron and positron.
          iii) Give a name of this kind of experiment.
Unit 2: Photoelectric effect
1)       A zinc plate is connected to a gold leaf electroscope. State the observation if:
a)       The zinc plate is negatively charged and being shone by a sodium lamp.
b)       The zinc plate is positively charged and being shone by a UV lamp.
c)       The zinc plate is negatively charged and being shone by a UV lamp.
2)       Sketch a Ip-V graph. State the physical meaning of -Vs instead of Vs.
3)       Find the speed of electron which is accelerated from still by a p.d. of 10V.
4)       Given that the photoelectric current detected is zero. State one deduction.
5)       Concerning the properties of photoelectric effect:
a)       State two properties of photoelectric effect which wave theory can't explain with explanation.
b)       Explain the above two properties by quantum theory.
c)       Explain the term intensity in terms of wave and quantum theory respectively.
6)       A beam of monochromatic light has frequency 10-9m.
a)       The source of the light has power rating 100W. Calculate the number of photons emitted per second.
b)       The light is directed on a piece of metal with working function 3eV. Find the stopping potential.
Unit 3: Bohr's atomic model.
1)       Define continuous spectrum and absorption spectrum. Hence explain the formation of absorption spectrum.
2)       State two classical formulas that being considered as postulates of Bohr's model.
3)       Considering the energy level of the hydrogen atom:
a)       Show that U = EPE/2, hence show that U = e2/8πε0r.
b)       Considering the centripetal force of orbital motion of electron, derive the formula of energy and orbital radius of electron at a certain energy level.
c)       State the radius, energy and physical meaning of E. Hence state the physical meaning of "electrons with energy level beyond E".
4)       Find the requiring energy for:
a)       Exciting energy of hydrogen atom from ground to 3th excited state.
b)       Ionization energy of hydrogen atom from 6th excited state.
5)       Find the wavelength of EM waves emitted for a transition in Balmer series from n=6.
6)       The electron of hydrogen atom is at the ground state. Find the transition (if happened):
a)       A photon with wavelength 122 nm collides with the electron.
b)       A photon with wavelength 144 nm collides with the electron.
c)       A photon with wavelength 0.34 nm collides with the electron.
7)       The first four energy levels of a heavy metal atom is -2.5MeV, -1.5MeV, -790keV and -230keV. The electron is now at the first excited state.
a)       Find the frequency of photon required to transit the electron to n=3.
b)       Find the wavelength of photon emitted to transit the electron to n=1.
c)       It's given that photon of frequency f1 transits the electron to n=a and another photon of frequency f2 transits the electron again to n=b. Show that a photon of frequency f1+f2 directly transit the electron to n=b.
d)       A student plans to use an accelerated free electron to provide energy to the electron in the atom to make a transition. Comment whether it is practical or not.
Unit 4: Wave-particle duality
1)       State two evidences for wave and particle property of photon/EM wave respectively.
2)       Determine whether the following phenomena refer to wave or particle property.
a)       Refer to relativity theory, all observers observes the speed of light is c.
b)       Photoelectric effect
c)       Individual counts in GM counter. (Instruments measuring radioactivity)
3)       A car of mass 1200kg drives at the speed of 1ms-1. Find its De Broglie wavelength.
Unit 5: Nanotechnology
1)       Define size of nanoscale. Hence express the size of atom in terms of nanoscale.
2)       Give three examples of allotropes of carbon atom.
3)       a) Explain why carbon nanotubes can have a higher tensile strength than bulky metals.
b) Explain with diagram with carbon nanotubes can have a higher thermal conductivity.
c) Define ferromagnetic and paramagnetic materials and give one example for each material.
d) A cube is cut into 27 (33) smaller cubes of equal size. Find the surface area to volume ratio. Hence deduce that the above ratio can be infinitely big.
4)       Define lotus effect and give one application.
5)       Assume a lens do not have any optical abbreviations. Explain whether his lens do not give error.
6)       Two point objects are observed by a microscope under light of wavelength 600nm, the objective lens of the microscope has an aperture of size 5mm and focal length of 19mm. Find the resolving power of the microscope.
7)       Give a reason that the object in TEM must be thin enough.
8)       Find the p.d. acquired to accelerate electron in TEM so that it can have wavelength 0.02nm. Hence find the resolving power of the TEM.
9)       Given the typical distance between specimen and probe of STM. Compare the tunnelling current if the distance is widening by 10 times.
10)   a) STM don't scan the "colour" of the object as we observed. Explain.
b) Waves on the object are observed in STM image. Explain.
11)   Give one precaution when handling nanomaterials.
Mixing problems:
1)       Consider the nucleus of helium (4He) as a point mass. Calculate the energy level of a Helium atom.
2)       Assume En=E1/n2 and Bohr's model is correct for all atoms. Explain photoelectric effect by Bohr's model.
3)       An electron beam is accelerated by 50kV and passed a double slit and project on a fluorescent screen.
a)       The slit separation is 100nm, find the angle for the first three maxima.
b)       Identify wave and particle behavior in this experiment.
c)       Describe the result when only one electron passes through the double slit by probability wave.

Disclaimer:
1) My friend and me created this.
2) We are not familiar with problems concerning Rayleigh criteria, so Ch.5Q6 is just a typical modified question.
3) This is uploaded in the note page (with some fixed stuff for the note set), I just checked the 1980-1989 AL past paper structured questions for these three questions. I'm sorry that there's no past questions for Bohr's model included. Neither for duality too (though I think it's included in the HKU Higher level exam.)

Note:
1) We neglect all non-classical effect here, except the quantum theory introduced.
2) If the problem is contradictory to modern theory, you're welcome to comment here/tell me what's wrong.