23 Pages

slide4short

Course: BIOSTAT 8472, Fall 2009
School: Minnesota
Rating:
 
 
 
 
 

Word Count: 1982

Document Preview

of Basics Bayesian Inference A frequentist thinks of unknown parameters as fixed A Bayesian thinks of parameters as random, and thus having distributions (just like the data). A Bayesian writes down a prior guess for , and combines it with the likelihood for the observed data Y to obtain the posterior distribution of . All statistical inferences then follow from summarizing the posterior. This approach expands the...

Register Now

Unformatted Document Excerpt

Coursehero >> Minnesota >> Minnesota >> BIOSTAT 8472

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.
of Basics Bayesian Inference A frequentist thinks of unknown parameters as fixed A Bayesian thinks of parameters as random, and thus having distributions (just like the data). A Bayesian writes down a prior guess for , and combines it with the likelihood for the observed data Y to obtain the posterior distribution of . All statistical inferences then follow from summarizing the posterior. This approach expands the class of candidate models, and facilitates hierarchical modeling, where it is important to properly account for various sources of uncertainty (e.g. spatial vs. nonspatial heterogeneity) The classical (frequentist) approach to estimation is not "wrong", but it is "limited in scope"! Chapter 2: Basics of Point-Referenced Data Models p. 1/2 Basics of Bayesian Inference As usual, we start with a model f (y|) for the observed data y = (y1 , . . . , yn ) given the unknown parameters = (1 , . . . , K ) Add a prior distribution (|), where is a vector of hyperparameters. The posterior distribution for is given by p(y, |) = p(|y, ) = p(y|) = p(y, |) p(y, |) d f (y|)(|) f (y|)(|) . = m(y|) f (y|)(|) d We refer to this formula as Bayes' Theorem. Chapter 2: Basics of Point-Referenced Data Models p. 2/2 Basics of Bayesian Inference When is not known, a second stage (hyperprior) distribution h() will often be required, so that p(y, ) = p(|y) = p(y) f (y|)(|)h() d . f (y|)(|)h() dd Alternatively, we might replace in p(|y, ) by an ^ estimate ; this is called empirical Bayes analysis Note that posterior information prior information 0 , with the second "" replaced by "=" only if the prior is noninformative (which is often uniform, or "flat"). Chapter 2: Basics of Point-Referenced Data Models p. 3/2 Illustration of Bayes' Theorem Suppose f (y|) = N (y|, 2 ), and > 0 known If we take (|) = N (|, 2 ) where = (, ) is fixed and known, then it is easy to show that p(|y) = N 2 2 2 2 2 + 2 y, 2 2 2 + + + 2 . Note that The posterior mean E(|y) is a weighted average of the prior mean and the data value y , with weights depending on our relative uncertainty the posterior precision (reciprocal of the variance) is equal to 1/ 2 + 1/ 2 , which is the sum of the likelihood and prior precisions. Chapter 2: Basics of Point-Referenced Data Models p. 4/2 Illustration (continued) As a concrete example, let = 2, = 1, y = 6, and = 1: prior posterior with n = 1 posterior with n = 10 1.2 0.0 0.2 0.4 0.6 0.8 1.0 -2 0 2 4 6 8 When n = 1, prior and likelihood receive equal weight When n = 10, the data dominate the prior The posterior variance goes to zero as n Chapter 2: Basics of Point-Referenced Data Models p. 5/2 Notes on priors The prior here is conjugate: it leads to a posterior distribution for that is available in closed form, and is a member of the same distributional family as the prior. Note that setting 2 = corresponds to an arbitrarily vague (or noninformative) prior. The posterior is then p (|y) = N |y, 2 /n , the same as the likelihood! The limit of the conjugate (normal) prior here is a uniform (or "flat") prior, and thus the posterior is the renormalized likelihood. The flat prior is appealing but improper here, since p()d = +. However, the posterior is still well defined, and so improper priors are often used! Chapter 2: Basics of Point-Referenced Data Models p. 6/2 A more general example Let Y be an n 1 data vector, X an n p matrix of covariates, and adopt the likelihood and prior structure, Y| Nn (X, ) and Np (A, V ) Then the posterior distribution of |Y is |Y N (Dd, D) , where D-1 = X T -1 X + V -1 and d = X T -1 Y + V -1 A. V -1 = 0 delivers a "flat" prior; if = 2 Ip , we get ^ |Y N , 2 (X X)-1 , where ^ = (X X)-1 X y usual likelihood approach! Chapter 2: Basics of Point-Referenced Data Models p. 7/2 Bayesian estimation Choose an appropriate measure of centrality: the posterior mean, median, or mode. Point estimation: Consider qL and qU , the /2- and (1 - /2)-quantiles of p(|y): Interval estimation: qL p(|y)d = /2 and - qU p(|y)d = 1 - /2 . Then clearly P (qL < < qU |y) = 1 - ; our confidence that lies in (qL , qU ) is 100 (1 - )%. Thus this interval is a 100 (1 - )% credible set ("Bayesian CI") for . This interval is relatively easy to compute, and enjoys a direct interpretation ("The probability that lies in (qL , qU ) is (1 - )") that the frequentist interval does not. Chapter 2: Basics of Point-Referenced Data Models p. 8/2 Ex: Y Bin(10, ), U (0, 1), yobs = 7 2.0 0.0 0.0 0.5 1.0 1.5 2.5 3.0 0.2 0.4 0.6 0.8 1.0 Plot Beta(yobs + 1, n - yobs + 1) = Beta(8, 4) posterior in R/S: > theta <- seq(from=0, to=1, length=101) > yobs <- 7; n <- 10 > plot(theta, dbeta(theta, yobs+1, n-yobs+1), type="l") Add 95% equal-tail Bayesian CI (dotted vertical lines): > abline(v=qbeta(.5, yobs+1, n-yobs+1)) > abline(v=qbeta(c(.025, .975), yobs+1, n-yobs+1), lty=2) Chapter 2: Basics of Point-Referenced Data Models p. 9/2 Bayesian hypothesis testing Classical approach bases accept/reject decision on p-value = P {T (Y) more "extreme" than T (yobs )|, H0 } , where "extremeness" is in the direction of HA Several troubles with this approach: hypotheses must be nested p-value can only offer evidence against the null p-value is not the "probability that H0 is true" (but is often erroneously interpreted this way) As a result of the dependence on "more extreme" T (Y) values, two experiments with different designs but identical likelihoods could result in different p-values, violating the Likelihood Principle Chapter 2: Basics of Point-Referenced Data Models p. 10/2 Bayesian hypothesis testing (cont'd) Bayesian approach: Select the model with the largest posterior probability, P (Mi |y) = p(y|Mi )p(Mi )/p(y), where p(y|Mi ) = f (y| i , Mi )i ( i )d i . For two models, the quantity commonly used to summarize these results is the Bayes factor, P (M1 |y)/P (M2 |y) p(y | M1 ) BF = = , P (M1 )/P (M2 ) p(y | M2 ) i.e., the likelihood ratio if both hypotheses are simple Problem: If i ( i ) is improper, then p(y|Mi ) necessarily is as well = BF is not well-defined!... Chapter 2: Basics of Point-Referenced Data Models p. 11/2 Bayesian testing hypothesis via DIC A generalization of the Akaike Information Criterion (AIC) to the case of hierarchical models based on the posterior distribution of the deviance statistic, D() = -2 log f (y|) + 2 log h(y) , where f (y|) is the likelihood and h(y) is any standardizing function of the data alone Summarize the fit of a model by the posterior expectation of the deviance, D = E|y [D] Summarize the complexity of a model by the effective number of parameters, pD = E|y [D] - D(E|y []) = D - D() . Chapter 2: Basics of Point-Referenced Data Models p. 12/2 Bayesian hypothesis testing via DIC The Deviance Information Criterion (DIC) is then DIC = D + pD = 2D - D() , with smaller values indicating preferred models. Both building blocks of DIC and pD , E|y [D] and D(E|y []), are easily estimated via MCMC methods, and in fact are automatic within WinBUGS. While pD has a scale (effective model size), DIC does not, so only differences in DIC across models matter. DIC can be sensitive to parametrization and "focus" (i.e., what is considered to be part of the likelihood) f (y|): "focused on " p(y|) = f (y|)p(|)d : "focused on " Chapter 2: Basics of Point-Referenced Data Models p. 13/2 Bayesian computation Recall Monte Carlo integration: Suppose h(), and we seek E[f ()] = 1 = ^ N N j=1 w.p. 1 f ()h()d. Then if i h(), iid f (j ) E[f ()] as N ( SLLN ) Since is itself a sample mean of independent ^ observations, V ar(^ ) = V ar[f ()]/N . This means se(^ ) = ^ 1 N (N - 1) N [f (j ) - ]2 . ^ j=1 = use to get 95% (frequentist!) CI for Chapter 2: Basics of Point-Referenced Data Models p. 14/2 Gibbs sampling Suppose the joint distribution of = (1 , . . . , K ) is uniquely determined by the full conditional distributions, {pi (i |j=i ), i = 1, . . . , K}. Gibbs Sampler: Given an arbitrary set of starting values Draw 1 (1) (1) (0) (0) (0) {1 , . . . , K }, p1 (1 |2 , . . . , K ), p2 (2 |1 , 3 , . . . , K ), . . . pK (K |1 , . . . , K-1 ), (1) (1) (1) (0) (0) (0) Draw 2 Draw K (1) Under mild conditions, (1 , . . . , K ) (1 , , K ) p as t . (t) (t) d Chapter 2: Basics of Point-Referenced Data Models p. 15/2 Gibbs sampling (cont'd) For t sufficiently large (say, bigger than t0 ), { (t) }T 0 +1 t=t is a (correlated) sample from the true posterior. We might therefore use a sample mean to estimate the posterior mean, i.e., 1 E(i |y) = T - t0 T i . t=t0 +1 (t) The time from t = 0 to t = t0 is commonly known as the burn-in period; one can safely adapt (change) an MCMC algorithm during this preconvergence period, since these samples will be discarded anyway Chapter 2: Basics of Point-Referenced Data Models p. 16/2 Gibbs sampling (cont'd) In practice, we may actually run m parallel Gibbs sampling chains, instead of only 1, for some modest m (say, m = 5). Discarding the burn-in period, we obtain 1 E(i |y) = m(T - t0 ) m T (t) i,j j=1 t=t0 +1 , where now the j subscript indicates chain number. What happens if the full conditional p(i |j=i , y) is not available in closed form? Typically, p(i |j=i , y) will be available up to proportionality constant, since it is proportional to the portion of f (y|)p() that involves i . Chapter 2: Basics of Point-Referenced Data Models p. 17/2 Metropolis algorithm Suppose the true joint posterior for has density p(u) wrt some measure . Choose an candidate density q( | (t-1) ) that is a valid density function for every possible value of the conditioning variable (t-1) , and satisfies q( | (t-1) ) = q( (t-1) | ), i.e., q is symmetric in its arguments. Given a starting value (0) at iteration t = 0, the algorithm proceeds as follows: Chapter 2: Basics of Point-Referenced Data Models p. 18/2 Metropolis algorithm (cont'd) Metropolis Algorithm: For (t 1 ...

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:

Minnesota - BIOSTAT - 8472
Multivariate spatial modelingSpatial data often come as multivariate measurements in each location Examples: Environmental monitoring stations yield measurements on ozone, NO, CO, PM2.5 etc In atmospheric modeling at a given site we observe surface
Minnesota - BIOSTAT - 8472
What is a point pattern?For a specified, bounded region D, a set of locations si , i = 1, 2., nChapter 9: The Analysis of Spatial Point Patterns p. 1/2What is a point pattern?For a specified, bounded region D, a set of locations si , i = 1, 2.
Minnesota - BIOSTAT - 8472
Bayesian Areal Wombling for Geographic Boundary AnalysisHaolan Lu and Bradley P. Carlinhaolanl@biostat.umn.edu and brad@biostat.umn.eduDivision of Biostatistics School of Public Health University of MinnesotaBayesian Areal Wombling for Geograph
Minnesota - BIOSTAT - 8472
Analysis of Marked Point Patterns with Spatial and Non-spatial Covariate InformationShengde Liang, Bradley P. Carlin, and Alan E. Gelfandshengdel@biostat.umn.edu, brad@biostat.umn.edu, and alan@stat.duke.eduDivision of Biostatistics, School of Pu
Minnesota - BIOSTAT - 8472
Bayesian Areal Wombling for Geographic Boundary AnalysisHaolan Lu, Haijun Ma, and Bradley P. Carlinhaolanl@biostat.umn.edu, haijunma@biostat.umn.edu, and brad@biostat.umn.eduDivision of Biostatistics School of Public Health University of Minnesot
Minnesota - BIOSTAT - 8472
Example using R: Heart Valves StudyGoal: Show that the thrombogenicity rate (TR) is less than two times the objective performance criterionR and WinBUGS Examples p. 1/4Example using R: Heart Valves StudyGoal: Show that the thrombogenicity rate
Minnesota - BIOSTAT - 8472
Spatial data analysis with spBayesExisting software for point-level hierarchical spatial modeling: WinBUGS/BRugs and the geoR package Limitations of WinBUGS for point-level models: Poor with matrix computations infeasible for even a moderate number
Minnesota - BIOSTAT - 8472
Spatial Biostatistics PubH 8472 Instructor: Office: fax: e-mail: course website: Class Meetings: Office Hours: Dr. Brad Carlin Mayo Building, Room A427; phone 624-6646 626-0660 brad@biostat.umn.edu www.biostat.umn.edu/brad/ph8472.html Tu Th 9:45 11:
Minnesota - BIOSTAT - 8472
%!PS-Adobe-2.0 %Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software %Title: syll.dvi %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: /usr/local/TeX/bin/dvi2ps -o syll.ps syll.dvi %DVIPSParameters: dp
Minnesota - BIOSTAT - 8472
map: 29 grid1 1grid2 2grid3 3grid4 4grid5 5grid6 6grid7 7grid8 8grid9 9grid10 10grid11 11grid12 12grid13 13grid14 14grid15 15grid16 16grid17 17grid18 18grid19 19grid20 20grid21 21grid22 22grid23 23grid24 24grid25 25grid26 2
Columbia - ATS - 2107
Journal of Business Research 60 (2007) 285 295Interfirm behavior and goal alignment in relational exchangesAndrew T. Stephen a, Leonard V. Coote baColumbia University, Graduate School of Business, Uris Hall, 3022 Broadway, Room 311, New York,
Washington - ENG - 198
Eng198C/Anth204 Winter 2006 Instructor: Megan Styles Assignment 3.2 Interview 1 Analysis Your final paper requires you to analyze the results of your life and health history interviews in light of concepts discussed in class. For this assignment, you
Sveriges lantbruksuniversitet - ECON - 306
Student Questionnaire Form Econ 387: Spring 2006 David Andolfatto Instructions: Feel free to provide feedback on this course using this form at any time during the semester. You do not have to put your name on the form. Once you fill it out, print it
Sveriges lantbruksuniversitet - ECON - 306
Econ 387: Midterm 1 February 9, 2006 D. Andolfatto Name Instructions. Do not begin the exam until you are instructed to do so. Read the exam over carefully and raise your hand if you need clarification. In answering the questions, limit your answers
Sveriges lantbruksuniversitet - ECON - 306
Econ 387: Midterm 1 February 9, 2006 Answer Key [1] [10 Marks]. What is the definition of an indifference curve? Why are indifference curves an important component of macroeconomic analysis? (Provide two reasons). An indifference curve is defined as
Sveriges lantbruksuniversitet - ECON - 306
Econ 387March 9, 2006 Name:_Student Number:_ Instructions. Do not begin the exam until you are instructed to do so. Read the exam over carefully and raise your hand if you need clarification. In answering the questions, limit your answers to the spa
Sveriges lantbruksuniversitet - ECON - 306
Econ 387March 9, 2006 [1] [10 Marks]. What is the definition of an indifference curve? Why are indifference curves an important component of macroeconomic analysis? (Provide two reasons). An indifference curve is defined as the set of all commodity
Sveriges lantbruksuniversitet - ECON - 306
A Basic Neoclassical Business Cycle Model with Heterogeneous AgentsDavid Andolfatto January 18, 20061IntroductionChapter 2 in the textbook models an economy consisting of many individuals who are literally assumed to be identical; this is the
Sveriges lantbruksuniversitet - ECON - 306
Econ 387: Assignment 1David Andolfatto January 2006Consider an economy populated by a representative agent with preferences for consumption and leisure given by the expected utility function: E[U (c, l)] = h(l) + E[c], where &gt; 0 is a parameter, h
Sveriges lantbruksuniversitet - ECON - 306
Econ 387: Assignment 2David Andolfatto January 2006This question constitutes an application of the heterogeneous agents model (available on the course web page). Consider an economy consisting of people with preferences for consumption and leisure
Sveriges lantbruksuniversitet - ECON - 306
Econ 387 Spring 1998 Assignment 3 1. Consider an economy consisting of N individuals with preferences for time-dated consumption given by: u(c1i , c2i ) = ln(c1i ) + i ln(c2i ) for i = 1, 2, ., N. Each individual has a time-dated endowment (y1i , y2
Sveriges lantbruksuniversitet - ECON - 306
Econ 387: Spring 2006 Assignment 4: Term Structure of Interest Rates 1. Consider a closed populated by a representative agent with preferences defined over time-dated consumption (c1 , c2 , c3 ). These preferences are given by: U (c1 , c2 , c3 ) = ln
Sveriges lantbruksuniversitet - ECON - 809
Search Models of UnemploymentDavid Andolfatto March 20061IntroductionTo the average person (perhaps even the average economist), unemployment is often equated to a state of involuntary idleness. Such a view, however, appears inconsistent with
Sveriges lantbruksuniversitet - ECON - 809
Econ 809: Assignment 1January 20061Part 1On Robert Shimer's webpage, http:/home.uchicago.edu/~shimer/data/mmm/, you will find data on the job-finding rate pt , and the vacancy-unemployment ratio t . Use this data to perform a `Solow residual'
Sveriges lantbruksuniversitet - ECON - 809
Econ 809: Assignment 1 Answer Key Consider an aggregate matching technology with the following functional form: mt = ext vt u1- . t This may alternatively be specified as pt = ext , where pt mt /ut denotes t the job-finding rate and t vt /ut deno
Sveriges lantbruksuniversitet - ECON - 809
Econ 809 Spring 2006 Assignment 2 The due date for this assignment is Tuesday, February 21. 1. In class, we developed a baseline Pissarides-style labor market search model. The theory essentially boiled down to two restrictions: one describing the su
Sveriges lantbruksuniversitet - ECON - 809
Econ 809: Assignment 3 Spring 2006 David Andolfatto 1. Consider an economy consisting of 2-period-lived overlapping generations (with an initial old generation that lives for one period only). Let us restrict attention to stationary allocations. A re
Sveriges lantbruksuniversitet - ECON - 809
Econ 809 Spring 2006 Assignment 1. Time is discrete and the horizon is infinite; t = 0, 1, ., . Each period is divided into two subperiods; stage 1 and stage 2 (day and night). There is a unit mass of infinitely-lived ex ante identical agents i [0,
Sveriges lantbruksuniversitet - ECON - 809
Real Business Cycle Models: Past, Present, and FutureSergio Rebelo March 2005Abstract In this paper I review the contribution of real business cycles models to our understanding of economic fluctuations, and discuss open issues in business cycle r
Sveriges lantbruksuniversitet - ECON - 809
Money and Credit in Quasi-linear EnvironmentsDavid Andolfatto Simon Fraser University March 2006Abstract I consider a version of the quasi-linear environment suggested by Lagos and Wright (2005). In the first part of these notes, I lay out the bas
Sveriges lantbruksuniversitet - ECON - 809
The Economics of PaymentsEd Nosal and Guillaume Rocheteau January 20, 200611IntroductionEconomics is all about exchange, but exchange need not be seamless. How else can one explain the existence of the myriad assets and institutions- domesti
Sveriges lantbruksuniversitet - ECON - 809
Notes on Exchange Rate Volatility in an Equilibrium Asset Pricing Model Manuelli and Peck (IER, 1990)1ModelTime is discrete and the horizon is infinite; t = 1, 2, ., . There are two economies, each of which are populated by a sequence of two-pe
Sveriges lantbruksuniversitet - ECON - 809
Dynamic Taxation, Private Information and MoneyChristopher Waller University of Notre Dame March 4, 2006 VERY PRELIMINARYAbstract The objective of this paper is to study optimal .scal and monetary policy in a dynamic Mirrlees model where the frict
Sveriges lantbruksuniversitet - ECON - 809
Bank Runs Under Optimal Banking StructuresDavid Andolfatto Simon Fraser University Ed Nosal Federal Reserve Bank of ClevelandNeil Wallace Pennsylvania State University November 17, 20051 2Introduction Physical EnvironmentThe economy consists
Sveriges lantbruksuniversitet - ECON - 305
1?ymonoce eht gnitcapmi morf 'skcohs ytivitcudorp` tneverp wohemos ot tnemnrevog eht rof )elbarised e b ti dluow ,os fi dna( elbisaef eb ti dluoW ?etautcufl ot raeppa ytivitcudorp seod ,weiv ruoy ni ,yhW .]skraM 01[ .2.selbairav suonegodne fo tes
Sveriges lantbruksuniversitet - ECON - 305
Econ 305: Intermediate Macroeconomic Theory October 4, 2004 D. Andolfatto Name Instructions. Please limit your answer to the space provided below each question. Do not write on the back of the exam paper (it will not be graded). Pen or pencil is fine
Sveriges lantbruksuniversitet - ECON - 305
Econ 305: Midterm1Answer KeyOctober 5, 2005 D. Andolfatto Name Instructions. Please write neatly and label all diagrams clearly. Limit your answers to the space provided below each question-do not write your answers on the back of the exam or in t
Sveriges lantbruksuniversitet - ECON - 305
1.ymonoce na rof swen dab ylraelc si ticfied tnuocca tnerruc eht ni esaercni nA )e(.noitisop tnuocca tnerruc sti no tceffe on evah ot ylekil si ytivitcudorp ot kcohs )yraropmet tub( esrevda na ,ymonoce nepo llams a roF )d(.dnamed remusnoc etalu
Sveriges lantbruksuniversitet - ECON - 305
Econ 305: Intermediate Macroeconomic Theory November, 2004 D. Andolfatto Name Instructions. Please limit your answer to the space provided below each question. Do not write on the back of the exam paper (it will not be marked). Either print or write
Sveriges lantbruksuniversitet - ECON - 305
Econ 305: Midterm1 (Answer Key) November 2, 2006 D. Andolfatto Name[1] [10 Marks]. Consider a closed economy where output is in entirely in the form of a nonstorable consumption good. Assume that output y is generated entirely by labor (and that ho
Sveriges lantbruksuniversitet - ECON - 305
.nialpxE ?yroeht htiw tnetsisnoc tcaf cisab siht sI .dnert elbinrecsid on nwohs sah rotces tekram eht ot etoved elpoe p taht emit fo tnuoma eht ,sraey 001 tsal eht revo ylidaets gnisaercni neeb evah adanaC ni segaw laer taht tcaf eht etipseD .]skraM
Sveriges lantbruksuniversitet - ECON - 305
Econ 305: Final Exam December 2004 D. Andolfatto Name Instructions. Please limit your answer to the space provided below each question. Label all diagrams clearly. If a question asks you to answer in words only, then do not use any math, symbols or d
Sveriges lantbruksuniversitet - ECON - 810
Notes on Contracts and MoneyD. Andolfatto May 5, 20081A Standard Principal-Agent ProblemA risk-neutral principal hires a risk-averse agent. The agent applies effort n; which generates output y {yl , yh } , 0 &lt; yl &lt; yh &lt; . Let (n) = Pr [y = yh
Sveriges lantbruksuniversitet - ECON - 810
Optimal Debt ContractsDavid Andolfatto February 20081IntroductionAs an introduction, you should read &quot;Why is There Debt,&quot; by Lacker (1991). As Lacker notes, the striking feature of a debt contract is that debt payments are fixed over a wide ra
Sveriges lantbruksuniversitet - ECON - 810
Lecture Notes The Role of Demandable Debt in Structuring Optimal Banking Arrangements Calomiris and Kahn (AER, 1991)1Basic ModelAs usual, there are two agents; in this case, labelled a banker and depositor. The banker has no wealth, but has an
Sveriges lantbruksuniversitet - ECON - 810
Notes on Diamond and Dybvig (JPE, 1983) David Andolfatto February 20081BasicsThere are N &gt; 1 agents (a finite integer). Each agent has an endowment y &gt; 0. There are two periods, t = 1, 2 and agents have preferences for `current' and `future' co
Sveriges lantbruksuniversitet - ECON - 810
Notes on Jacklin (1987) David Andolfatto February 20081Basic Diamond-Dybvig (Review)There are N &gt; 1 agents (a finite integer). Each agent has an endowment y &gt; 0. There are two periods, t = 1, 2 and agents have preferences for `current' and `fut
Sveriges lantbruksuniversitet - ECON - 810
.ytniatrecnu etagergga on si erehT .tnega laudividni na fo evitcepsrep eht morf ytilibaborp a sa deweiv si retemarap ehT .rennam siht ni detacoler si taht )dnalsi hcae no( noitalupop eht fo noitcarf eht etonedteL . noitacol 'rehto eht` ot noitaco
Georgia Tech - CHEM - 1315
III Aromatic CompoundsAromatic Compounds: Compounds that resemble benzene in structure andchemical behavior (terms comes from fragrant odors)Benzene:- Cyclic Compound - Six-Membered Ring - ONLY Six Hydrogens - Six Carbons - Three Double Bonds
Columbia - AM - 2993
ABHINANDAN MAJUMDARB2, 500 Riverside Drive New York 10027, NY, USA Phone: +1-646-509-5767(M) Email: am2993@columbia.edu http:/www.columbia.edu/~am2993Education Master of Science in Computer Engineering at Columbia University (Graduation Date: D
Allan Hancock College - ENGN - 4528
Image Processing Toolbox. Version 3.2 (R13) 28-Jun-2002 Release information. images/Readme - Display information about current and previous versions. Image display. colorbar - Display colorbar (MATLAB Toolbox). getimage - Get image data from axes. im
George Mason - ECE - 499
Catching up Homework from last week is due Feb 12th. If you are on time, you should have (1) thought about your circuit and found a good opamp for it; (2) downloaded a layout program (PCB123, or ExpressPCB). Wednesday, Feb 7th, 2pm: Layout Discuss
George Mason - ECE - 499
Announcements Newly available: webct41.gmu.edu What is there? Files; messages; questions &amp; answers. Next Monday, 3:45pm, Chem safety training.Schmitt triggerHow to design a simple circuit Read up on your problem (internet) Use application no
George Mason - ECE - 499
Drug Delivery Systemscontainer + drugbodyDefinition: drug delivery systems Biomaterials used to release drugs in the body, in a controlled manner. Control of timing and target.http:/www.devicelink.com/mpb/archive/97/11/9711b34b.jpg Convent
George Mason - ECE - 499
Lab sessions from March 7 to May 1stScheduling, project demos, lab etiquetteth2 labs/experiment, 4 groupsMar 7 and Mar 21 Neurot FSR glove ECG Accelerometer/EMG Original project 1 2 3 4 Mar 28 and Apr 4 2 1 4 3 Apr 11 and Apr 18 3 4 1 2 Apr 25
George Mason - ECE - 499
Biomedical SensorsInstrumentation System Sensor characteristics Physical SensorsAnnouncements On Wednesday we continue the two groups (1:30pm and 3pm). You are responsible for running the experiments! Webct has a suggested format for lab report
George Mason - ECE - 499
Biomedical SensorsInstrumentation System Sensor characteristics Physical SensorsLast lecture before midterm. Exam will be emailed to you on Wednesday, March 7th.Announcements On Wednesday we continue the two groups (1:30pm and 3pm). I won't an
George Mason - ECE - 499
Biomedical SensorsFrom last class: Performance measurement Transducers Kinds of sensors pO2 (electrochemical sensor)Electrode Electrolyte InterfaceElectrode C eeC+ : Cation Electrolyte (neutral charge) C+, A- in solution Current flow C C AAA
George Mason - ECE - 499
Biomedical SensorsFrom last class: Performance measurement Transducers Kinds of sensors pO2 (electrochemical sensor)Electrode Electrolyte InterfaceElectrode C eeC+ : Cation Electrolyte (neutral charge) C+, A- in solution Current flow C C C+
George Mason - ECE - 499
Biomechanics What is it? Application of Mechanical Engineering principles to living systems. Design of orthopaedic devices Treatment of skeletal diseases Study of damage and repair of the skeletonBones Deformable structures Bone tissue: stru