15 Pages

solutions309

Course: MAS 3301, Fall 2009
School: East Los Angeles College
Rating:
 
 
 
 
 

Word Count: 2478

Document Preview

Bayesian MAS3301 Statistics Problems 3 and Solutions Semester 2 2008-9 Problems 3 1. In a small survey, a random sample of 50 people from a large population is selected. Each person is asked a question to which the answer is either Yes or No. Let the proportion in the population who would answer Yes be . Our prior distribution for is a beta(1.5, 1.5) distribution. In the survey, 37 people answer Yes. (a) Find...

Register Now

Unformatted Document Excerpt

Coursehero >> California >> East Los Angeles College >> MAS 3301

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.
Bayesian MAS3301 Statistics Problems 3 and Solutions Semester 2 2008-9 Problems 3 1. In a small survey, a random sample of 50 people from a large population is selected. Each person is asked a question to which the answer is either Yes or No. Let the proportion in the population who would answer Yes be . Our prior distribution for is a beta(1.5, 1.5) distribution. In the survey, 37 people answer Yes. (a) Find the prior mean and prior standard deviation of . (b) Find the prior probability that < 0.6. (c) Find the likelihood. (d) Find the posterior distribution of . (e) Find the posterior mean and posterior standard deviation of . (f) Plot a graph showing the prior and posterior probability density functions of on the same axes. (g) Find the posterior probability that < 0.6. Notes: The probability density function of a beta(a, b) distribution is f (x) = kxa1 (1 x)b1 where k is a constant. If X beta(a, b) then the mean of X is E(X) = and the variance of X is var(X) = a a+b ab . (a + b + 1)(a + b)2 If X beta(a, b) then you can use a command such as the following in R to nd Pr(X < c). pbeta(c,a,b) To plot the prior and posterior probability densities you may use R commands such as the following. theta<-seq(0.01,0.99,0.01) prior<-dbeta(theta,a,b) posterior<-dbeta(theta,c,d) plot(theta,posterior,xlab=expression(theta),ylab="Density",type="l") lines(theta,prior,lty=2) 1 2. The populations, ni , and the number of cases, xi , of a disease in a year in each of six districts are given in the table below. Population n 120342 235967 243745 197452 276935 157222 Cases x 2 5 3 5 3 1 We suppose that the number Xi in a district with population ni is a Poisson random variable with mean ni /100000. The number in each district is independent of the numbers in other districts, given the value of . Our prior distribution for is a gamma distribution with mean 3.0 and standard deviation 2.0. (a) Find the parameters of the prior distribution. (b) Find the prior probability that < 2.0. (c) Find the likelihood. (d) Find the posterior distribution of . (e) Find the posterior mean and posterior standard deviation of . (f) Plot a graph showing the prior and posterior probability density functions of on the same axes. (g) Find the posterior probability that < 2.0. Notes: The probability density function of a gamma(a, b) distribution is f (x) = kxa1 exp(bx) where k is a constant. If X gamma(a, b) then the mean of X is E(X) = a/b and the variance of X is var(X) = a/(b2 ). If X gamma(a, b) then you can use a command such as the following in R to nd Pr(X < c). pgamma(c,a,b) To plot the prior and posterior probability densities you may use R commands such as the following. lambda<-seq(0.00,5.00,0.01) prior<-dgamma(lambda,a,b) posterior<-dgamma(lambda,c,d) plot(lambda,posterior,xlab=expression(lambda),ylab="Density",type="l") lines(lambda,prior,lty=2) 3. Geologists note the type of rock at xed vertical intervals of six inches up a quarry face. At this quarry there are four types of rock. The following model is adopted. The conditional probability that the next rock type is j given that the present type is i and 4 given whatever has gone before is pij . Clearly j=1 pij = 1 for all i. The following table gives the observed (upwards) transition frequencies. 2 From rock 1 2 3 4 1 56 15 20 6 To rock 2 3 13 24 93 22 25 153 35 11 4 4 35 11 44 Our prior distribution for the transition probabilities is as follows. For each i we have a uniform distribution over the space of possible values of pi1 , . . . , pi4 . The prior distribution of pi1 , . . . , pi4 is independent of that for pk1 , . . . , pk4 for i = k. Find the matrix of posterior expectations of the transition probabilities. Note that the integral of xn1 xn2 xn3 xn4 over the region such that xj > 0 for j = 1, . . . , 4 and 1 2 3 4 4 xj = 1, where n1 , . . . , n4 are positive is j=1 1 x n1 1 0 0 1x1 xn2 2 0 1x1 x2 xn3 (1 x1 x2 x3 )n4 .dx3 .dx2 .dx1 3 = (n1 + 1)(n2 + 1)(n3 + 1)(n4 + 1) (n1 + n2 + n3 + n4 + 4) 4. A biologist is interested in the proportion, , of badgers in a particular area which carry the infection responsible for bovine tuberculosis. The biologists prior distribution for is a beta(1, 19) distribution. (a) i. Find the biologists prior mean and prior standard deviation for . ii. Find the cumulative distribution function of the biologists prior distribution and hence nd values 1 , 2 such that, in the biologists prior distribution, Pr( < 1 ) = Pr( > 2 ) = 0.05. (b) The biologist captures twenty badgers and tests them for the infection. Assume that, given , the number, X, of these carrying the infection has a binomial(20, ) distribution. The observed number carrying the infection is x = 2. i. ii. iii. iv. Find the likelihood function. Find the biologists posterior distribution for . Find the biologists posterior mean and posterior standard deviation for . Use R to plot a graph showing the biologists prior and posterior probability density functions for . 5. A factory produces large numbers of packets of nuts. As part of the quality control process, samples of the packets are taken and weighed to check whether they are underweight. Let the true proportion of packets which are underweight be and assume that, given , the packets are independent and each has probability of being underweight. A beta(1, 9) prior distribution for is used. (a) The procedure consists of selecting packets until either an underweight packet is found, in which case we stop and note the number X of packets examined, or m = 10 packets are examined and none is underweight, in which we case we stop and note this fact. i. Find the posterior distribution for when X = 7 is observed. ii. Find the posterior distribution for when no underweight packets are found out of m = 10. (b) Now consider varying the value of m. Use R to nd the posterior probability that < 0.02 when no underweight packets are found out of i. m = 10, ii. m = 20, 3 iii. m = 30. 6. The numbers of patients arriving at a minor injuries clinic in 10 half-hour intervals are recorded. It is supposed that, given the value of a parameter , the number Xj arriving in interval j has a Poisson distribution Xj Poisson() and Xj is independent of Xk for j = k. The prior distribution for is a gamma(a, b) distribution. The prior mean is 10 and the prior standard deviation is 5. (a) i. Find the values of a and b. ii. Let W 2 . Find values w1 , w2 such that Pr(W < w1 ) = Pr(W > w2 ) = 0.025. 2a Hence nd values l1 , l2 such that, in the prior distribution, Pr( < l1 ) = Pr( > l2 ) = 0.025. iii. Using R (or otherwise) nd a 95% prior highest probability density interval for . iv. Compare these two intervals. (b) The data are as follows. 9 12 16 12 16 11 18 13 12 19 i. Find the posterior distribution of . ii. Using R (or otherwise) nd a 95% posterior highest probability density interval for . 7. The numbers of sales of a particular item from an Internet retail site in each of 20 weeks are recorded. Assume that, given the value of a parameter , these numbers are independent observations from the Poisson() distribution. Our prior distribution for is a gamma(a, b) distribution. (a) Our prior mean and standard deviation for are 16 and 8 respectively. Find the values of a and b. (b) The observed numbers of sales are as follows. 14 19 14 21 22 33 15 13 16 19 27 22 27 21 16 25 14 23 22 17 Find the posterior distribution of . (c) Using R or otherwise, plot a graph showing both the prior and posterior probability density functions of . (d) Using R or otherwise, nd a 95% posterior hpd interval for . (Note: The R function hpdgamma is available from the Module Web Page). 8. In a medical experiment, patients with a chronic condition are asked to say which of two treatments, A, B, they prefer. (You may assume for the purpose of this question that every patient will express a preference one way or the other). Let the population proportion who prefer A be . We observe a sample of n patients. Given , the n responses are independent and the probability that a particular patient prefers A is . Our prior distribution for is a beta(a, a) distribution with a standard deviation of 0.25. (a) Find the value of a. (b) We observe n = 30 patients of whom 21 prefer treatment A. Find the posterior distribution of . (c) Find the posterior mean and standard deviation of . (d) Using R or otherwise, plot a graph showing both the prior and posterior probability density functions of . (e) Using R or otherwise, nd a symmetric 95% posterior probability interval for . (Hint: The R command qbeta(0.025,a,b) will give the 2.5% point of a beta(a, b) distribution). 4 9. The survival times, in months, of patients diagnosed with a severe form of a terminal illness are thought to be well by modelled an exponential() distribution. We observe the survival times of n such patients. Our prior distribution for is a gamma(a, b) distribution. (a) Prior beliefs are expressed in terms of the median lifetime, m. Find an expression for m in terms of . (b) In the prior distribution, the lower 5% point for m is 6.0 and the upper 5% point is 46.2. Find the corresponding lower and upper 5% points for . Let these be k1 , k2 respectively. (c) Let k2 /k1 = r. Find, to the nearest integer, the value of such that, in a 2 distribution, the 95% point divided by the 5% point is r and hence deduce the value of a. (d) Using your value of a and one of the percentage points for , nd the value of b. (e) We observe n = 25 patients and the sum of the lifetimes is 502. Find the posterior distribution of . (f) Using the relationship of the gamma distribution to the 2 distribution, or otherwise, nd a symmetric 95% posterior interval for . Note: The R command qchisq(0.025,nu) will give the lower 2.5% point of a 2 distribution on nu degrees of freedom. Homework 3 Solutions to Questions 7, 8, 9 of Problems 3 are to be submitted in the Homework Letterbox no later than 4.00pm on Monday March 9th. 5 Solutions 1. (a) In the prior a = 1.5 and b = 1.5. So the mean is 1.5 a = = 0.5. a+b 3.0 The variance is (a + so the standard deviation is ab b)2 (a + b + 1) = 1.5 1.5 1 = 24 3 16 1 = 0.25. 4 (b) Using R the prior probability that < 0.6 is 0.62647. > pbeta(0.6,1.5,1.5) [1] 0.62647 (c) The likelihood is 50 37 37 (1 )13 . (d) The prior density is proportional to 1.51 (1 )1.51 The likelihood is proportional to 37 (1 )13 Hence the posterior density is proportional to 38.51 (1 )14.51 The posterior distribution is beta(38.5, 14.5). (e) In the posterior a = 38.5 and b = 14.5. So the mean is 38.5 a = = 0.7264. a+b 53.0 The variance is ab 38.5 14.5 = = 3.6803 103 (a + b)2 (a + b + 1) 532 54 so the standard deviation is 0.06067. (f) See Figure 1. > > > > > theta<-seq(0.01,0.99,0.01) prior<-dbeta(theta,1.5,1.5) posterior<-dbeta(theta,38.5,14.5) plot(theta,posterior,xlab=expression(theta),ylab="Density",type="l") lines(theta,prior,lty=2) (g) Using R the posterior probability that < 0.6 is 0.02490528. > pbeta(0.6,38.5,14.5) [1] 0.02490528 2. (a) The mean is a/b = 3 and the variance is a/b2 = 4. So 9 a2 /b2 = = a, 4 a/b2 giving a = 2.25 and b= 2.25 = 0.75. 3 6 Density 0 0.0 1 2 3 4 5 6 0.2 0.4 0.6 0.8 1.0 Figure 1: Prior (dashes) and posterior (solid) pdfs for Question 1. (b) Using R the prior probability that < 2.0 is 0.3672305. > pgamma(2,2.25,0.75) [1] 0.3672305 (c) The likelihood is ei xi i xi ! i=1 n = e i xi i (ni /100000)xi xi ! xi ! = en/100000 S where n = ni = 1231663 and S = xi = 19. This is proportional to e12.31663 19 . (d) The prior density is proportional to 2.251 e0.75 19 12.316663 The likelihood is proportional to e Hence the posterior density is proportional to 21.251 e13.06663 The posterior distribution is gamma(21.25, 13.06663). (e) In the posterior a = 21.25 and b = 13.06663. So the mean is a 21.25 = = 1.6262. b 13.06663 The standard deviation is a 21.25 = = 0.3528. b 13.06663 7 Density 0.0 0 0.2 0.4 0.6 0.8 1.0 2 4 6 8 Figure 2: Prior (dashes) and posterior (solid) pdfs for Question 2. (f) See Figure 2. > > > > > lambda<-seq(0.05,8.0,0.05) prior<-dgamma(lambda,2.25,0.75) posterior<-dgamma(lambda,21.25,13.06663) plot(lambda,posterior,xlab=expression(lambda),ylab="Density",type="l") lines(lambda,prior,lty=2) (g) Using R the posterior probability that < 2.0 is 0.8551274. > pgamma(2,21.25,13.06663) [1] 0.8551274 3. Since the prior distribution is uniform the prior density is a constant. Therefore the posterior density is proportional to the likelihood. the likelihood is 4 4 L= i=1 j=1 pijij n where nij is the observed number of transitions from rock i to rock j. The posterior density is therefore 4 fi (pi1 , pi2 , pi3 , pi4 ) i=1 (1) where fi (pi1 , pi2 , pi3 , pi4 ) = k1i pni1 pni2 pni3 pni4 i1 i2 i3 i4 is the posterior density of pi1 , pi2 , pi3 , pi4 . 8 (1) Since fi (pi1 , pi2 , pi3 , pi4 ) dpi1 dpi2 dpi3 = 1, R (1) we must have 1 k1i = R pni1 pni2 pni3 pni4 dpi1 dpi2 dpi3 i1 i2 i3 i4 (ni1 + 1)(ni2 + 1)(ni3 + 1)(ni4 + 1) (Ni + 4) = where Ni = ni1 + ni2 + ni3 + ni4 and the integrals are taken over the region R in which (pi1 , pi2 , pi3 , pi4 ) must lie and pi4 = 1 pi1 pi2 pi3 . Now, the posterior mean of pi1 , for example, is E(1) (pi1 ) = R pi1 fi (pi1 , pi2 , pi3 , pi4 ) dpi1 dpi2 dpi3 ki1 pni1 +1 pni2 pni3 pni4 dpi1 dpi2 dpi3 i2 i3 i4 i1 R (1) = = k1i k2i where k2i = So E(1) (pi1 ) = = = In general (ni1 + 2)(ni2 + 1)(ni3 + 1)(ni4 + 1) . (Ni + 5) (ni1 + 2)(ni2 + 1)(ni3 + 1)(ni4 + 1) (Ni + 4) (ni1 + 1)(ni2 + 1)(ni3 + 1)(ni4 + 1) (Ni + 5) (Ni + 4) (ni1 + 1)(ni1 + 1) (ni1 + 1) (Ni + 4)(Ni + 4) ni1 + 1 Ni + 4 E(1) (pij ) = The table of posterior means is as follows. nij + 1 . Ni + 4 From rock 1 2 3 4 1 0.5644 0.0947 0.0986 0.0700 To rock 2 3 0.1386 0.2475 0.5562 0.1361 0.1221 0.7230 0.3600 0.1200 4 0.0495 0.2130 0.0563 0.4500 4. 5. 6. 9 7. (a) Prior mean: a = 16, b a = 64. b2 Prior variance: Hence a = 4 and b = 0.25. (1 mark) (b) From the data s = ...

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:

Pittsburgh - IS - 2350
Pittsburgh - IS - 0020
IS0020 Program Design and Software Tools HW 5 Due: April 6, 2005 - Total Points 100For this assignment read problem 10.12 related to the employee hierarchy. You will extend the problem by adding new classes as follows: Instead of Employee as the m
Pittsburgh - IS - 0020
INFSCI 0020 Program Design and Software Tools Homework 5, Due April 6In this assignment you will develop a Deque template class using doubly linked list, similar to the Queue template class shown in Fig17.13. A Deque object allows insertions and del
Pittsburgh - SIS - 3955
Note to recipient of this file onCitation and Use of this ReferenceThe following book chapter was published, and can be properly cited as:W.D. Grover, R.R. Iraschko, Y. Zheng, Comparative Methods and Issues in Design of Mesh-Restorable STM and
Pittsburgh - IS - 0020
IS0020 Program Design and Software Tools HW6 Due: April 19, 2005 (Total Points 100)As discussed in class, here, you will extend HW5 with few more classes and file processing, as follows: Introduce following new classes 1. Student class A Student i
Pittsburgh - TELCOM - 2813
Windows 2000 and Windows XP Security OverviewRegis Leonard And Brian MauroOverview Whyis Windows such a target? Effects of Past Attacks Current Threats Microsoft Response 3rd Party Response What can you do? ConclusionWhy is Windows Such
Pittsburgh - IS - 2150
Graduate Program in Information Science and Telecommunications and Networking School of Information Sciences University of PittsburghTEL2821/IS2150: INTRODUCTION TO SECURITY Lab 2: ForensicsVersion 1.3, Last Edited: Sept. 29, 2008Group Members:
UPenn - CIT - 591
CIT 594Basic content CIT 594 is a continuation of CIT 591 Java will be used throughout However, CIT 594 is not primarily a course about Java Topics:Data Structures Supplied by Java How to create your own A sampling of some better-known a
UPenn - STAT - 434
JQTJRXW&amp;OF ECONOMICTHEORY14,443-445 (1977)The St. Petersburg Paradox: A Discussion of Some RecentThe recent notes by Brito [I] and by Shapley [3j on th.e St. Petersburg paradox are provocative and certainly shed new light cm this old topi
UPenn - STAT - 434
Statistics 434: Bullet Points for Day 8 ARIMA(p,d,q) In FullAfter considering the stylized facts suggested by HW3, we complete our description of the most widely used class of univariate time series models, the ARIMA(p,d,q) models. Our main task is
Pittsburgh - CS - 131
PowerPoint Presentation to Accompany GO! with Microsoft Office 2007 Introductory, 2e Chapter 17Enhancing a Presentation with Animation, Tables, and Chartswith Microsoft Office 2007 Introductory, 2e 2008 Pearson Education, Inc. Publishing as Pren
UPenn - STAT - 910
Statistics 910, #141Kalman FilterOverview1. Summary of filtering equations 2. Derivations 3. Application to ARMA likelihoods 4. Further recursionsSummary of Kalman filterSimplifications To make the derivations more direct, assume that the tw
Pittsburgh - CS - 2520
CS2520 Wide Area Networks Lab Assignment #2 Due: 11:59PM 3/17/2009Survey on ECN capability of popular Web serversExplicit Congestion Notification (ECN) is used to signal congestion in the network path without incurring packet loss. It requires coo
Pittsburgh - CS - 2410
Name _CS 2410 Computer Architecture Fall 2004Midterm Exam Directions: This exam is closed bookput all books and notes under your desk on the floor. There are five questions with several subquestions. All questions are marked with their point value
Purdue - CE - 697
Brookdale - CSCI - 1206
CSCI1206:Assignment3Due: 19 March, 11:59pm 1. OverviewAs suggested in class, it is fun to build your own website. Thus, in this assignment, you can satisfy your urges and create a website that defines you as a person. The goal of this assignment is
East Los Angeles College - MAS - 3214
2009 MAS3214/4214 CRYPTOGRAPHY EXERCISES12009MAS3214/4214 Cryptography ExercisesNB. Questions are grouped according to subject matter. Within each section, some (labelled A1, A2 etc.) are for assessment and some (labelled P1,P2 etc.) for prob
Pittsburgh - CS - 0110
Name:_CS 0110: Introduction to PCs and the Internet Quiz #3: Microsoft Excel and Access 20071. You can rename the columns in an Excel worksheet. a. True b. False 2. A field in Access may contain values of multiple types. a. True b. False 3. Formal
East Los Angeles College - MAS - 3214
9Complexity14. 5 marks An integer n has k digits in binary provided that 2k1 n &lt; 2k (If n = 2k , then the binary representation of n is 1 followed by k 0s, and while 2k 1, whose binary representation is k 1s, is the biggest integer whose binary
East Los Angeles College - MAS - 3214
More techniques from number theoryP20 Factorise 10579 using Pollards p 1 method with a = 2 and b = 7. [No marks will be given for a factorization using another method.] You may wish to make use of the following table of powers of 2 in Z10579 . i 2i
Pittsburgh - CS - 131
CS131 Software for Personal Computing, Spring 2007 Tuesday, Thursday 1:00pm 2:15pm.Score _ / 30Activity Sheet for Lab 10: Access (AC2)Name _ Email address _Directions In this lab, you will work on a document using Microsoft Access. Follow t
UPenn - ECON - 001
Econ 001: Midterm 2 Make up Nov 23, 2005 Instructions:This is a 60-minute examination. Write all answers in the blue books provided. Show all work. Use diagrams where appropriate and label all diagrams carefully. Write your name and your Recitation
UPenn - CSE - 240
Name:1Intro. to Computer Architecture CSE 240 Autumn 2006Homework 5 Due: Wed. 25 October 2006Write your answers on these pages. Additional pages may be attached (with staple) if necessary. Please ensure that your answers are legible and show
East Los Angeles College - MAS - 3214
MAS3214 Number Theory (2009) Examples Sheet 3M.C.W.Qu 2: Very few people explicitly dealt with the fact that m and n are coprime. If someone wrote down CPFs for m and n, then wrote down a separate line giving the CPF of mn as the composition of t
Pittsburgh - CS - 131
Lab 10Creating and Animating objects in a PowerPoint PresentationWorksheet Name _ Email_ Directions: Place this sheet on top of all completed activities and staple them. Number any printed documents with the activity number listed below.
Purdue - CE - 474
Member 1 2 3 4 5 6 7 8 9 10 11Length 6 6 8 6 8 6 6 8.5 8.5 10 10 LREAL Nreal Member force Cross-sectional area due to 20k at node F 6.5 -6.6 6.5 -6.6 6.5 -6.5 6.5 -4.87 6.5 4.93 6.5 4.83 3.25 8.53 3.75 -6.83 3.75 9.33 3.75 8.12 3.75 -6.17 ACASE
UPenn - FIN - 2100
2116 Recovery of Facilities and Administrative (F&amp;A) Costs Subject: SPONSORED PROJECTS Title: RECOVERY OF FACILITIES AND ADMINISTRATIVE (F&amp;A) COSTS No.: 2116 Effective: January 1989 Last Reviewed: May 2008 Last Revision: February 2004 Resp. Office: R
UPenn - FIN - 1100
1105 Inventories of Materials Subject: Accounting Title: Inventories of Materials No.: 1105 Effective: December 1986 Revised: Last Reviewed: April 2007 Responsible Office: Comptroller Approval: ComptrollerPurpose Certain materials and supplies are
UPenn - FIN - 2200
2206Illiquid Gift Acceptance PolicySubject: Gift Policy Title: Illiquid Gift Acceptance Policy No.: 2206 Effective: July 2003 Revised: March 2006 Last Reviewed: March 2008 Resp. Office: Treasurer Approval: TreasurerPurpose To identify the polic
Laurentian - PHYS - 000490
Start CounterW. U. Boeglinthis talk5/12/05 Collaboration Meeting May 05 Start Counter 1Detector Review5/12/05Collaboration Meeting May 05 Start Counter2New Functionality helps initial phase of experiment start signal for tracking dete
Laurentian - PHYS - 000413
Summary of GlueX Rack SpaceDetector Photon Tagger Type 6U, 8 channel, 8 bit, 250 Msps FADC 6U, 32 channel, 62 ps TDC High voltage 6U, 8 channel, 8 bit, 250 Msps FADC 6U, 8 channel, 8 bit, 250 Msps FADC 6U, 32 channel, 62 ps TDC High voltage (include
Northwest Nazarene - CS - 263
CS 263 Feb. 11, 2009 Assignment 2 Due 5pm, Feb. 25, 2009 Part A Answer the following questions 1. What is the value of AL, AX or EAX register after each of the following instructions (suppose data segment starts at address 0x1000Hsegment .data var1
CSB-SJU - PHYS - 358
Physics 358 Name:Exam 1 Solutions22 September 2008Show all work to receive full credit. 1. Write the binary number representation for (10.375)10 . (1010.011)2 2. Write the number (-CA)16 in 2's complement notation. (1 0011 0110)2 Note: negative
CSB-SJU - PHYSICS - 211
Foundations of Physics IIIFall 2006; 8:00 a.m. odd Physics 211 PEngel 173Instructor:Name: Dr. Tom Kirkman Oce: PEngel 111 Oce Hour: 3 p.m. Day 5Phone: 3633811email: tkirkman@unix.csbsju.edu Informal Oce Hours: 7:30 a.m. 5:30 p.m.Texts: Fu
CSU Channel Islands - ATT - 0278
LHC7913PDU NEGATIVE RAD-HARD VOLTAGE REGULATORTask Name VMAD DIFFUSION +SILICON EVALUAT. DESIGN REVIEW NR.2 +PRELIMIN. RELIABIL. (168h + PRECOND.) DAC / MAT. 20 ENGIN. SAMPLES AVAILAB. IN CT (2 Kpcs) RELIABIL 1000h IN PORTFOLIO / PQC Start Date 20 D
CSB-SJU - PHYS - 365
Physics 365Homework #1111 December 200811.1 Starting the relativistic energy expression E = mc2 write the velocity of e : 1- v c2=mc2 E2=m2 c4 v =c 1- E2-1/21/2The time required for the antineutrinos to travel to earth is: d d
Purdue - MA - 15300
Cengage (Thomson) Now Hints for Lesson 27 and 28 In general: You can visit www.math.purdue.edu/MA 153 and use the discussion board to post questions and/or read responses. Matt will be live on that board MWF from 6-8 pm all semester. If you post a qu
Laurentian - PHYS - 000532
StudiesoftheFDCusingaStruck FlashADCSimonTaylorandDanielS.Carman OhioUniversityPropertiesofStruckSIS3300FADCSinglewidth6UVMEcard 8channels 105MHzperchannel(1MHz105MHz) &gt;80MHzbandwidth Internal/Externalclock 2banksx128Ksamples/channelmemory Multi
Pittsburgh - IS - 0020
1IS 0020Program Design and Software ToolsIntroduction to C+ ProgrammingLecture 3 Arrays &amp; Pointers Jan 13, 2004 2003 Prentice Hall, Inc. All rights reserved.2Arrays Array Consecutive group of memory locations Same name and type (int, ch
UPenn - CIT - 597
PreferencesPersistent storageInformation is persistent if it is kept between one invocation of a program and the next Many programs keep user preferences in a persistent fashion Sometimes the user sets these explicitly (in, say, a dialog bo
Pittsburgh - STAT - 1000
Name:Lab Problems 5-7Statistics 1000 Fall 2007 Dr. Nancy Pfenning5. (4 pts.) Students were surveyed as to how many minutes they had exercised the day before. They were also asked whether or not they smoked. (a) If one group exercised more, would
CSB-SJU - ECONOMICS - 111
Department of Economics College of Saint Benedict | Saint John's UniversitySpring Semester 2009 Louis JohnstonEconomics 111 Assignment #12 Due Date: Friday, February 20This assignment will give you further practice with the price elasticity of d
CSB-SJU - PHYSICS - 217
Spring 2008Exam 1Physics 217A1. Perform the following conversions: (a) Convert the decimal number 36 to binary. (b) Convert the decimal number 35 to hexadecimal. (c) Convert the hexadecimal number 34 to binary. (d) Convert the hexadecimal numbe
CSB-SJU - PHYSICS - 346
Physics 346: QMEXAM 32008 November 24Complete no more than 5 of the following problems 1. (R-R) Consider the problem of two attractive delta function potentials symmetrically located about the origin at x = a, with dimensionless Hamiltonian: H
CSB-SJU - PHYSICS - 211
Physics 211EXAM 1 Answer five of the following seven problems Properties of Sea Level Air: sound speed: v = 340.3 m/s density: = 1.225 kg/m3 pressure: p = 1 atm = 1.0133 105 Pa temperature: 288.2 K = 15.0 C2006 September 261. The below plots
Pittsburgh - CS - 2530
Tangler: A Censorship-Resistant Publishing System Based On Document EntanglementsPaper by: Marc Waldman and David Mazires Presentation by: Nicholas Farnan 3-23-09Anonymous PublishingWeb material is relatively simple to censor Content can be
Pittsburgh - CS - 2530
Backtracking IntrusionsSamuel T. King Peter M. ChenSpeaker: Brian Wongchaowart March 25, 2009Motivation An intrusion can be detected in many ways: modified files,open ports, unusual network traffic coming from a compromised host, a message f
Pittsburgh - CS - 441
CS 441: Discrete Structures for Computer Science Homework #2Assigned: September 10, 2008Name: Collaborators: Email:Due: September 17, 2008Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Pr
Purdue - CS - 250
SRAM access unit service priority arbitration AMBA bus interfaceSRAM pin interface clock data signals SRAM address dataAMBA from XScalememory &amp; FIFOaddrcommand decoder &amp; addr. generatorAMBA addr. queuesmicroengine addr. &amp; command queues
Pittsburgh - CS - 0441
CS 0441 Reivew 2Chapter 3:Terms: 1. Division: div and mod operations; 2. Dividend, divisor, quotient, and remainder; 3. Prime, and Composite; 4. Greatest common divisor (GCD) and Least common multiple (LCM); 5. Mod-based hash function, hash collisi
Pittsburgh - CS - 0441
CS 441: Discrete Structures for Computer Science Homework #4Assigned: February 2nd, 2009Name: Collaborators: Email:Due: February 11th, 2009Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem Problem P
Maryland - CMSC - 451
Spring 2009 CMSC 451 Solutions to Homework 2Samir KhullerComment: When writing algorithms, use pseudocode in a style similar to the one used by your textbook or by me in class. You should show correctness of your algorithm by presenting an argume
Maryland - PHYS - 115
Phys 115: Inquiry Into Physics Section 0201: Ayush GuptaSeventh Assignment, due Monday Oct. 22 nd Please also email to ayush.courses@gmail.comA general note on the idea of clarity, coherence, and filling in your argument: As you may have heard, s
Pittsburgh - ENGR - 2696
Control Theory in NeuroscienceArm Movement Control Theories 2 Physiology Aaron Batista 16 March 2009Bioeng 2696 / ECE 2695:Monday, March 23, 2009Outline1) Why do we care about adaptation? - It tells us about internal models! 2) Sensory adapta
UPenn - P - 414
Measuring the Speed of LightJohn Klumpp And Ainsley NiemkiewiczWhy Measure The Speed of Light? Inherently Difficult Electrodynamics Theory of Relativity Actually, We Don'tHow We Do It Measure Travel Time of Laser PulseOscilloscope SetupP
UPenn - P - 414
Speed of Light MeasurementLindsey Appenzoller University of Pennsylvania Medical PhysicsCreate PDF files without this message by purchasing novaPDF printer (http:/www.novapdf.com)Motivation The speed of light is a fundamental quantity in physic
UPenn - P - 414
Muon Lifetime MeasurementPHY521 Advanced Lab Jennifer Wei Zou Feb. 12, 2009What is MuonMuon is one of the elementary particles classified as lepton. Muon has a mass of 105.7 MeV. Muon and antimuon. Produced as high energy charged particles collid
UPenn - P - 414
Slide 1 2003 By Default!Cavendish ExperimentPresented by Mark Reeher Lab Partner: Jon Rosenfield For Physics 521A Free sample background from www.awesomebackgrounds.comSlide 2 2003 By Default!Presentation OverviewHistorical Background Th
UPenn - P - 414
Muon Lifetime LabAinsley NiemkiewiczIntroduction Muons are unstable leptons Essentially heavy electrons Produced in when energetic protons and nuclei collide with atmospheric matter 1st elementary particle discovered that does not occur in ato
UPenn - P - 414
DETERMINING THE LIFETIME OF MUON DECAYJames Durgin February 13, 2009 Physics 521 Lab Partner: Jennifer ZhuP + e + + e + - e- + e + Particle interactionsMuons in airBremsstrahlung radiationMuons in materialDecay into electro
Pittsburgh - ENGR - 1286
Please refer to textbook Pg.726, section 7.4.4-input common-mode range and how the assumption of 0.4V bias voltage comes from. Under this assumption, Compare the base and correct voltages for Q1, Vcm 5V - 0.7V + 0.4V = 4.7V Compare the base and corr