Unformatted Document Excerpt
Coursehero >>
Oregon >>
Oregon State >>
CS 261
Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Final CS556: Exam Questions
1. What are the main steps in David Marrs framework of computational vision? What are the key differences between Marrs paradigm and Intrinsic images? 2. Specify the criterion for identifying brightness changes in a pixel neighborhood, used by the (a) Harris detector. (b) Hessian detector. (c) Kadir-Brady detector. 3. Derive the criterion for detecting interest points, used by the (a) Harris detector. (b) Hessian detector. (c) Kadir-Brady detector. 4. Specify the Difference-of-Gaussians (DoG) detector? 5. Specify the main steps of extracting Maximally Stable Extremal Regions? 6. Derive a linear transform that maps a detected interest point onto a canonical, normalized form. 7. Explain differences between the SIFT and DAISY descriptors. 8. Explain the main steps of the Canny edge detector. In one of the steps, the Canny detector connects broken edges in the image, by lling the gaps with straight lines. Why is this postprocessing necessary? What is the underlying Gestalt principle for connecting the edges? 9. Suppose we applied the Canny edge detector to an image. Can we use intersections of detected Canny edges as interest points? 10. The goal is to extract scale invariant DAISY descriptors. Which of the following two algorithms would you use? Explain your choice.
Algorithm 1: For each scale S Compute DAISY gradient field of the image; Detect interest points at scale S; Compute the DAISY descriptor for each detection; End
1
Algorithm 2: Detect interest points that are stable over different scales; For each detected interest point Identify the scale of a region associated with the interest point; Use this scale to define the basic radius of the DAISY descriptor; Compute the DAISY descriptor; End
11. What is the difference between progressive scanning and interlaced scanning? 12. What is a vanishing point? Can there be more than one vanishing point in the image? 13. Homogeneous coordinates of point P in the image are P = [40 164 2]T . Which row and column contains P if homogeneous coordinates are measured from the top left corner of the image? 14. The intrinsic parameters of two cameras are given by 0.6 0.3 1.4 0.4 0.3 0.9 0.9 , K1 = 0 0.4 K2 = 0 0.6 1.4 0 0 1 0 0 1 Which of the two cameras would you prefer to use? Explain your choice. 15. Point P in the image is mapped to point P by rst translating P to P1 15 rows in the same direction of y axis, and 102 columns in the opposite direction of x axis, then, by rotating P1 to P2 around the top left image corner by 30 counter clockwise, and nally by scaling the coordinates of P2 to P by 1.3 along x axis, and 1.6 along y axis. Find the afne transformation matrix that captures these transformation steps from P to P . 16. Point P in the 3D scene is mapped to point P by rst translating P to P1 using the translation vector t = [45 56 78]T , and, then, by rotating P1 to P around the y axis of the world coordinate center by 45 clockwise. Find the afne transformation matrix that captures these transformation steps from P to P . 17. State the camera calibration problem. 18. Given a stereo pair of images, any two points x and x , from the two images respectively, can be related by a homography x = H x. These points can also be related via the fundamental matrix xT F x = 0. Derive an expression that relates F and H . What is the rank of H and F? 19. The intersection of two epipolar lines l1 and l2 is the epipole e in image 1 of a stereo pair. Suppose we are given the image coordinates of two non-planar pairs of points (x1 , x1 ) and (x2 , x2 ) and their respective homographies x1 = H1 x1 and x2 = H2 x2 . Derive the expressions of epipole e and fundamental matrix F in terms of these points and their homographies. 2
20. In a stereo pair of images, corresponding 2D points x and x that are generated from 3D coplanar points X that belong to a plane, , can be related by a homography, x = H x. These points can also be related via the fundamental matrix xT F x = 0. Given coordinates of two corresponding pairs of points (x1 , x1 ) and (x2 , x2 ), where x1 = H1 x1 , and x2 = H2 x2 , and 1 = 2 , and given homographies H1 and H2 , compute F ? 21. What is the motion between two images of a stereo pair whose epipoles are located: (a) in the center of the images, (b) in the innity; 22. Given the epipoles e and e of image 1 and image 2 of a stereo pair, and their fundamental matrix F , compute eT F =? and F e =? 23. Suppose we are given: (i) the projection camera matrices M and M for image 1 and image 2 of a stereo pair, (ii) the coordinates of two corresponding points x = MX and x = M X , and (iii) the point in the 3D scene, C , that projects onto the camera center of image 1 (i.e. MC = 0). Derive the equations of the epipolar lines l and l , and fundamental matrix F , in terms of M, M , x, x , C . What is the expression for F when the camera centers of image 1 and image 2 are the same (i.e., the stereo images are related only through a rotation at the same camera center)? 24. Given the projection camera matrices M and M for image 1 and image 2 of a stereo pair, the fundamental matrix F , and N pairs of corresponding points (x, x ) derive the least squares error-minimization algorithm for 3D scene reconstruction. 25. Perform Ncuts based foreground background segmentation of an image, represented as a graph of pixels. The graph contains three groups of nodes, A, B , and C . A contains 20 nodes, B contains 10 nodes, and C contains 5. All nodes in A are connected to each other with a weight of 1. Likewise, all nodes within B and C , respectively, are connected to each other with a weight of 1. Subgraphs A and B are connected only via one edge between node a in A and node b in B , whose weight is wab 0. Also, subgraphs A and C are connected only via one edge between node a in A and node c in C , whose weight is wac 0. Finally, subgraphs B and C are connected only via one edge between node b in B and node c in C , whose weight is wbc 0. Explain your Ncut results as a function of increasing wab , especially for wab values = 0, 1, 30, when: (i) wac = 0 and wbc = 0; (ii) wac = 1 and wbc = 1; and (iii) wac = 25 and wbc = 15; 26. Suppose we are given a graph G = (V, E, w ), where V is the set of nodes, E is the set of edges, and w : E R+ is a function that denes non-negative edge weights. If D is the degree matrix and W is the adjacency matrix of G, prove that the Laplacian of G, dened as L = D W is positive semidenite matrix. Hint: Prove that for any arbitrary column vector the following holds: T L = T D T W =
i
d i 2 i
ij
wij i j 0.
3
27. Finding the minimum Ncut in a graph G = (V, E, w ) with the Laplacian matrix L = D W can be formalized as 1T L1G1 G , min T 1 G1 1 D 1 G1 G1 where 1G1 is the indicator vector whose elements are equal to 1 over all nodes of G included in the subgraph G1 . Apply relaxation to this discrete problem, and formulate the corresponding continuous problem. 28. Suppose we are given a graph G = (V, E, w ), where V is the set of nodes, E is the set of edges, and w : E R+ is a function that denes non-negative edge weights. If D is the degree matrix and W is the adjacency matrix of G, then the symmetrically normalized Laplacian is dened as Ls = D 1/2 (D W )D 1/2 . Consider the solution of the following problem min 1T 1 Ls 1G1 , G
G1
where G1 is a subgraph of G. Is this solution equivalent to the one obtained by using the Ncut algorithm? Explain. 29. Suppose we are given a set of data points D = {x1 , x2 , . . . , xN }, dened in some feature space. This feature space can be partitioned into a number of bins, Bj , j =1, . . ., M . Let nj denote the number of data points within Bj , and let bj denote the representative point of Bj (e.g., mean value, or median value of all data points within Bj ). Then, the non-parameteric probability density estimate, f (x), of our data points D can be computed as f (x ) =
1 N M j =1 nj KHj (x
b j ),
where KHj (x bj ) is a kernel function with bandwidth matrix Hj that varies over different bins Bj . An example of the kernel function is the Gaussian function KHj (x bj ) = exp (x bj )T Hj 1 (x bj ) . Prove that the meanshift vector, m(x), for the Gaussian kernel with variable bandwidths Hj has the following form: m (x ) = H (x ) where
M
f ( x ) , f (x )
[H (x)]1 =
j =1
nj KHj (x bj )
M j =1
nj KHj (x bj )
Hj 1 ,
and f (x) =
d f (x ) . dx
30. A pixel has the following color values R = 28, G = 28, B = 28. Compute the corresponding HSI color values. 31. Which procedure is better for detecting salient edges in the image: 4
(a) Compute the image gradients and then smooth these gradients using the Gaussian lter; (b) Smooth the image pixel values and then compute the image gradients; (c) Filter the image using the gradient of the Gaussian lter. 32. The Canny edge detector uses two thresholds of image gradients to identify edges. Why? Which Gestalt principles of grouping are modeled by the Canny edge detector? 33. Suppose we are given a set of mutually dependent elements, A = {a1 , a2 , . . . , aN }, and a set of their labels, = {1 , 2 , . . . , M }, and the compatibility function rij (, ) that any pair of elements ai and aj have labels and , respectively. Specify the relaxation labeling update rule for computing the likelihoods ai , pi() = P (ai |). 34. Suppose the goal is to cluster edges in the image, A = {a1 , a2 , . . . , aN }, into two clusters, {0, 1}, and we are given the similarity values between the edges, sij = s(ai , aj ), and the spatial distances between the edges dij = d(ai , aj ). Specify the clustering algorithm using (a) The relaxation labeling algorithmi.e., specify the compatibility function rij (, ) that edges ai and aj have labels and , respectively, in terms of sij and dij , and then the update rule for computing the likelihoods ai , pi () = P (ai|). (b) The Ncut algorithmi.e., specify the cut and volume of a graph whose nodes are edges of A, in terms of sij and dij , and then the Ncut optimization function (discrete problem). 35. Specify the algorithm for the Voronoi image tessellation. 36. The Voronoi diagram is dened for a set of points. How can it be generalized for a set of edges? 37. State the Gestalt laws of closure, good continuation, and gure-ground.
Figure 1: Graph for Problem 38 38. Suppose we are given a graph G = (V, E, w ), as shown in Fig. 1. V is the set of nodes, E is the set of edges, and w : E R+ is a function that denes non-negative edge weights. Let D denote the degree matrix, and W denote the adjacency matrix of G. Also, let G1 and G2 be two subgraphs of G marked by dashed lines in Fig. 1. Compute: (a) 1T 1 D 1G1 D =? G 5
(b) 1T 1 D 1G1 W =? G (c) 1T 1 (D W )1G1 =? G (d) (1 1G1 )T (D W )(1 1G1 ) =? (e) D 1/2 (D W )D 1/2 =? 39. Suppose we are given a dataset D = {i : i = 1, 6}. List all clusters of D , obtained in the agglomerative clustering, when the distance between the clusters is dened as (a) Single linkage, (b) Complete linkage, (c) Average linkage. 40. Suppose we are give two open sequences of points: s1 = {s1,1 , . . . , s1,4 } and s2 = {s2,1 , . . . , s2,5 }, and their cost matrix, C . The rows of C correspond to the points in s1 , and the columns of C correspond to the points in s2 , and each element of C represents the cost of matching the corresponding pair of points C (i, j ) = d(s1,i , s2,j ). The cost matrix is specied as 1302 2 4 1 1 C= 0 1 4 4 1042 Compute the output of Dynamic Time Warping algorithm (DTW). To this end, transform C into an auxiliary matrix DTW that will record DTW(i, j ) = C (i, j ) + min [DTW(i 1, j ), DTW(i, j 1), DTW(i 1, j 1)] and then compute the optimal path in matrix DTW. 41. Let P (x, y ) denote the joint distribution of feature vector x and its associated label y . Similarly, let P (y |x) denote their posterior distribution. What is the difference between discriminative versus generative learning, in terms of P (x, y ) and P (y |x)? 42. What is a visual dictionary? What is a bag-of-words model? Describe the relationship between classication accuracy and the number of dictionary words.
6
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more.
Course Hero has millions of course specific materials providing students with the best way to expand
their education.
Below is a small sample set of documents:
Oregon State - CS - 261
CS556: HOMEWORK 1 due 01/20/2010Write a code for 1) Detecting Harris-afne corners in an image, by 1.1) Detecting multiscale Harris points, 1.2) Automatically selecting the scale of each detection, 1.3) Fitting an ellipse to each image region occupied by
Oregon State - CS - 261
CS556: Homework 1Forrest Briggs January 18, 20101Introduction1. Detecting Harris-afne corners in an image, by (a) Detecting multiscale Harris points, (b) Automatically selecting the scale of each detection, (c) Fitting an ellipse to each image region
Oregon State - CS - 261
CS 556: HOMEWORK 2 due Feb 15, 2010Problem 1 (40pts)This problem is about camera calibration. Given a set of images, and correspondences between points in the images and points in the 3D scenes, calibration is aimed at estimating the camera intrinsic an
Oregon State - CS - 261
CS 556 Homework 2Junyuan Lin1. Camera Calibration1.1. Intrinsic parameterFocal Length: Principal point: Distortion: Pixel error:fc = [ 493.34719 494.08140 ] [ 3.28668 3.37310 ] cc = [ 324.57643 239.77328 ] [ 3.40480 3.28516 ] kc = [ -0.42068 0.24068
Oregon State - CS - 261
CS 556: HOMEWORK 3 due Feb 24, 2010This homework is about spatiotemporal segmentation. A set of video frames when stacked together can be viewed as forming a space-time (2D+t) volume. As segmentation partitions an image into regions, spatiotemporal segme
Oregon State - CS - 261
CS556 HW #3Ali Torkamani1 IntroductionThis homework is about segmenting the image in each video frame. In other words it is on spatiotemporal segmentation. A set of video frames when stacked together can be viewed as forming a space-time (2D+t) volume.
Oregon State - CS - 261
CS 556: HOMEWORK 4 due March 15, 2010This homework is about object recognition using the bag-of-words model, on the Graz-02 images of bikes, cars, and people, which can be downloaded from:http:/lear.inrialpes.fr/people/marszalek/data/ig02/Images of the
Oregon State - CS - 261
HW4 ReportZhongzang Lin Mar 15, 20101 IntroductionThis homework is about object recognition using the bag-of-words model, testing on the Graz-02 images of bikes, cars, and people. Images of each classs are divided into training set and test set. Use th
Oregon State - ECE - 112
Calculating Power DissipationThe passive sign convention (really important!)When we observe that positive current enters the positive terminal of a component, we say that the component obeys the passive sign convention (PSC). Therefore, when the passive
Oregon State - ECE - 112
Electron Current vs. Conventional CurrentIn 1752, prior to electricity being identied with the electron, Ben Franklin chose a convention regarding the direction of current ow. Franklin assumed that electrons (being assumed positive) ow from positive to n
Oregon State - ECE - 112
Electrical CurrentElectrical current consists of moving electronsConductors such as copper are lled with movable charge not unlike a cloud of electrons. A net ow of these charges within the conductor constitutes electrical current ow. An external inuenc
Oregon State - ECE - 112
Electrons and ConductorsAtoms consist primarily of electrons, protons, and neutrons. A modied Bohr model of the atom is shown below. nucleus composed of a cluster of protons and neutrons orbital electrons e e ee electron proton neutrone outer shelle e
Oregon State - ECE - 112
Homework set #1 ECE112 Note: In the following questions, the assumption is that the appliance or device operates until the last coulomb is used. 1. A camcorder battery is rated at 6V with 1 Ah (Amp Hour) capacity. a)How many coulombs of charge are s
Oregon State - ECE - 112
Independent Current SourcesAn independent current source is an energy source that pushes a constant ow of electrons through an electrical circuit regardless of the load presented to it. In other words, a 1 amp source will maintain a current ow of 1 amp t
Oregon State - ECE - 112
Independent Voltage SourcesAn independent voltage source is an energy source that pushes electrons with a constant force or pressure regardless of the load presented to it. In other words, a 1 volt source will maintain 1 volt between its terminals regard
Oregon State - ECE - 112
Nodes, Loops and BranchesNodeA node is an uninterrupted segment of wire of any shape. Unless otherwise stated, the wire is considered to be perfect and have no resistance. Therefore, all points on the node have the same voltage. Physically speaking, a n
Oregon State - ECE - 112
The Power EquationElectric power is the rate at which energy is converted from electrical engery to some other form such as heat or mechanical energy. When charge moves through a reisistor it loses potential energy. That energy is converted to heat. Powe
Oregon State - ECE - 112
Resistors in ParallelResistors in series have the same current owing through them. Resistors in parallel have the same voltage across them. In the schematic below, r1 and r2 have identical voltages across them, but have different currents owing through t
Oregon State - ECE - 112
Resistors and Ohms LawA wire is an ideal conductor with no resistance (at least for our discussion). In contrast, a resistor is a component that purposefully impedes or opposes the ow of electrons. As an externlly applied electric eld is applied to force
Oregon State - ECE - 112
Voltage - Electromotive ForceElectrical current ow is the movement of electrons through conductors. But why would the electrons want to move? Electrons move because they get pushed by some external force. There are several energy sources that can force e
St. John's - BIOLOGY - 2000
CHAPTER 14 MUTATION, DNA REPAIR, AND CANCERClick to edit Master subtitle styleCopyright (c) The McGraw-Hill Companies, 11Mutationn n n n n nDefinition: alteration in the DNA sequence Consequences: Some mutations do not give any advantage of disadvant
WPI - MA - 521
partial differential equations
WPI - MA - 521
2.5. CURVILINEAR COORDINATES39Since the equation (2.85) is a second order differential equation, we would need to specify temperature derivatives in addition to specifying temperature values at the boundary. These conditions can be obtained from the con
Rutgers - PSYCH - 089
Health Psychology Winter 2009 21:830:424:W1:98246 Instructor: Sarah Savoy, M. A. Department of Psychology Room 111, Smith Hall (973) 353-3931 Class time: Class location: Office hours: MTWThF 12:00 p.m.-5:00 p.m., January 5th-16th Smith 240 TBACourse Obje
Simon Fraser - CMPT - 11151
DataStructuresandProgramming! Today:! Introductionto225 ! Administrivia! Coursewebsite:! http:/www.cs.sfu.ca/~mori/courses/cmpt225/ ! Allslidesavailablebeforelectureonwebsite ! AcknowledgementJohn Edgar 2! DataStructures ! Algorithms! SoftwareDevel
Simon Fraser - CMPT - 11151
Stacks and Queues! Abstract ! StacksData Types! Queues ! Priority QueuesSeptember 2004John Edgar2September 2004John Edgar3! ReversePolish Notation (RPN)! Also known as postfix notation ! A mathematical notation Where every operator follows its
Simon Fraser - CMPT - 11151
Object Oriented Programming! OOP Principles ! Java Classes ! C+ClassesSeptember 2004John Edgar2! Colours! How should we work with colours? How should we store them? How should we modify or operate on them?! Linkedlists! How should we provide the
Simon Fraser - CMPT - 11151
Memory and C+ Pointers! Java ! Javaobjects and memory primitive types and memory ! C+ objects and memory ! C+ primitive types and memory! Note: primitive types = int, long, float, double,char, January 2010 Greg Mori 2/ in function, f int arr[]; arr
Simon Fraser - CMPT - 11151
Recursion! !UnderstandhowtheFibonacciseriesisgenerated RecursiveAlgorithms! Writesimplerecursivealgorithms ! Analyzesimplerecursivealgorithms ! Understandthedrawbacksofrecursion!Nameotherrecursivealgorithmsanddata structuresJohn Edgar2!Whathappen
Simon Fraser - CMPT - 11151
AlgorithmAnalysis:BigONotation!Determinetherunningtimeofsimplealgorithms! Bestcase ! Averagecase ! Worstcase! ! !Profilealgorithms UnderstandOnotation'smathematicalbasis UseOnotationtomeasurerunningtimeJohn Edgar2!Algorithmscanbedescribedintermso
Simon Fraser - CMPT - 11151
Binary Search Trees! Understand ! Understandtree terminology and implement tree traversals ! Define the binary search tree property ! Implement binary search trees ! Implement the TreeSort algorithmOctober 2004John Edgar2!A set of nodes (or vertice
Simon Fraser - CMPT - 11151
Redblacktrees! Definetheredblacktreeproperties ! Describeandimplementrotations ! Implementredblacktreeinsertion ! ImplementredblacktreedeletionOctober 2004John Edgar2!!Itemscanbeinsertedin andremovedfromBSTs inO(height)time Sowhatistheheightofa BST
Simon Fraser - CMPT - 11151
HashTables!Whatcanwedoifwewantrapid accesstoindividualdataitems?! Lookingupdataforaflightinanair!Ineachcasespeedisveryimportant! Butthedatadoesnotneedtobetrafficcontrolsystem ! Lookinguptheaddressofsomeone makinga911call ! Checkingthespellingofword
Simon Fraser - CMPT - 11151
PriorityQueuesandHeaps! Aqueueshouldimplementatleastthefirsttwooftheseoperations:! insertinsertitematthebackofthequeue ! removeremoveanitemfromthefront ! peekreturntheitematthefrontofthequeue! Itisassumedthattheseoperationswillbewithoutremovingitimp
Simon Fraser - CMPT - 11151
! wehavebeenassumingthatthedatacollectionswehavebeenmanipulatingwere entirelystoredinmemory.!Inpractice,thisisnotalwaysareasonable assumption.! WhatifwewereaskedtosearchrecordsofallCanadiansforaparticularCanadian(searchkey>lastname)? Howmanyrecords?
Simon Fraser - CMPT - 11151
Graphs!Graph theory is often considered to have been born with Leonhard Euler Konigsberg was a city in Eastern Prussiabetween Poland and Russia in 1945 ! Konigsberg had seven bridges in its centre! In 1736 he solved the Konigsberg bridge problem ! Ren
Simon Fraser - CMPT - 11151
! Monday,April19,710pminHCC1520 ! Similarinstyletomidtermexam! Abitmorethantwiceaslongasmidterm ! Seesamplefinalviaemail! Finalexamiscumulative ! Closedbook,etc.! Moreweightonlatterhalf! Examwillcoverallmaterialinassignmentsandlabs ! Examwillcoveralm
Caltech - PH - 136
i Ph136abc Roger Blandford and Kip Thorne APPLICATIONS OF CLASSICAL PHYSICS 1. COURSE DESCRIPTION AND PHILOSOPHY This course was conceived by one of us (Kip), and has been taught for some years by him both of us and other Caltech faculty based on a prelim
Caltech - PH - 136
iAPPLICATIONS OF CLASSICAL PHYSICSRoger D. Blandford and Kip S. ThorneCalifornia Institute of Technology20022003iiCONTENTS[Version 0200.1, 26 September 2002] Note: Concurrently with the 20022003 course Ph136, we are producing a nal revision of this
Caltech - PH - 136
Ph136abc Roger Blandford and Kip Thorne Questionaire: Please ll out and return it in class on Wednesday 1. Your name:Caltech 200220032. Your option (eld of study physics, astronomy, applied mathematics, .): 3. Your year (junior, senior, 2nd year grad st
Caltech - PH - 136
Chapter 1 Physics in Flat Spacetime: Geometric ViewpointVersion 0201.2, September 2002 Please send comments, suggestions, and errata via email to kip@tapir.caltech.edu, or on paper to Kip Thorne, 130-33 Caltech, Pasadena CA 911251.1OverviewThis is a b
Caltech - PH - 136
Ph 136a: General Relativity1 October 2002CHAPTER 1: PHYSICS IN FLAT SPACETIME: GEOMETRIC VIEWPOINT Reading: Chapter 1 of Blandford and Thorne: Available at http:/www.pma.caltech.edu/Courses/ph136/2002/ Note: This chapter is much longer than the other ch
Caltech - PH - 136
Physics 136 Kip Thorne Important Concepts Chapter 1 I IICaltech 7 October 2002IIIIVVFrameworks for physical laws and their relationships to each other A General Relativity, Special Relativity and Newtonian Physics: Sec. 1.1 Physics as Geometry A Newt
Caltech - PH - 136
nR H%Hb`f R nR H1 f t 1 f t t 1 t t t 1 h 5 f 5 f t b 1 f 5 C f u R1 C f hHb1 t t tt t 1 t p x CC@V5zS`VfEDSRPG rAz#5'h7XCDC`XXf5o Xx @ U g D d 4 e @ D B I B d a F T W 2 a F 4 d g g 4 d s d 4 g @ @ T D F B W@ d 4 2 D xy t 10f y P X 3 cfw_ 7 3C3E f y t |
Caltech - PH - 136
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: ps1.dvi %Pages: 8 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips ps1 %DVIPSParameters: dpi=1200, com
Caltech - PH - 136
Part I STATISTICAL PHYSICS1Statistical PhysicsVersion 0202.1, October 2002 In this rst part of the book we shall study aspects of classical statistical physics that every physicist should know but are not usually treated in elementary thermodynamics co
Caltech - PH - 136
Ph 136a CHAPTER 2: KINETIC THEORY8 October 2002Reading: Chapter 2 of Blandford and Thorne. Most of the applications of kinetic theory are in Example Exercises. These Examples are designed to give you some feel for how kinetic theory is used in practice.
Caltech - PH - 136
Physics 136 Kip Thorne Important Concepts Chapters 1 & 2Caltech Oct 7, 2002I Frameworks for physical laws and their relationships to each other A General Relativity, Special Relativity and Newtonian Physics: Sec. 1.1 B Phase space for a collection of pa
Caltech - PH - 136
n @ a l dD F T B VETE@CBVm5XW y EDSk I j 6 a TD 6 4 4 F T W g B @d W l 4 T @ W edDg T 4 g B 8 6 e4g y PG 57r X 7X!5ED5E2hu%77C4Xh5h75EDC@cfw_hXEWB 'x w w q x q u ht q 1 t q 1 1 t TXE4@EWd7 @W I 8 4 d 4 @ T W d WB 4 @ F W g @ @ ee5D#XC6@ y ASk 'hXhEgXHu7C8
Caltech - PH - 136
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: ps2.dvi %Pages: 11 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips ps2 %DVIPSParameters: dpi=1200, co
Caltech - PH - 136
d R H aq R X H e sW sW X sqF Xq e H q Ri d wWq P wW s R X d W X e pgBeIQWIFphI`FYs`RQeIB`RjIpSdcHgX`HIcqce`RIfSdVeBFkpIp3tSqIfYdBahRI`Fp1fQdcHSqBHBahRI q P q R R d m X s d sW Xq R d W X X a R X H R wWq H qWgwd R dpxQPIBefcfw_v3tp`RqXpIfQdcHYfSd`HqdIpBdI`
Caltech - PH - 136
Physics 136 Kip Thorne Important Concepts Chapters 1 through 3Caltech Oct 16, 2002I Frameworks for physical laws and their relationships to each other A General Relativity, Special Relativity and Newtonian Physics: Sec. 1.1 B Phase space for a collectio
Caltech - PH - 136
xm w y w m v k Pq X m f w 9y j5hHIEBhXW y w 7E4uXehXh gas w TDDg @g T @ W 6d 4g T W d m DdD s 7 BXj2E74Xj29sX4Xh@AX52'79Eg@ ( X 7 fA`c v k m y w 31 W @ T T W D T W G 4 4 D s t2 w T7E4WAPgjg |`7CCB@XWs746Xpfhe fh5A7E4XehXh`XjE27XjAfIjxT g @ a D T4 6 d 4 D
Caltech - PH - 136
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: ps3.dvi %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips ps3 %DVIPSParameters: dpi=1200, com
Caltech - PH - 136
Chapter 4 Statistical ThermodynamicsVersion 0203.2, 23 Oct 02 Please send comments, suggestions, and errata via email to kip@tapir.caltech.edu and rdb@caltech.edu, or on paper to Kip Thorne, 130-33 Caltech, Pasadena CA 911254.1OverviewIn Chap. 3, we i
Caltech - PH - 136
Ph 136a23 October 2002 CHAPTER 4: STATISTICAL THERMODYNAMICSReading: Chapter 4 of Blandford and Thorne. Problems A. Exercise 4.1: Pressure-Measuring Device B. Do Exercise 4.3: Enthalpy Representation for Thermodynamics; if you nd it overly dicult, and y