59 Pages

Lecture21_stat107v6_1up

Course: STATS 107, Spring 2012
School: Harvard
Rating:
 
 
 
 
 

Word Count: 2275

Document Preview

107: Stat Introduction to Business and Financial Statistics Class 21: VaR and Resampling 1 Value at Risk Simply put, assume you have a $1,000,000 portfolio (very cool! ) You ask: What is the probability that I'd lose $X (OR MORE) over the next M months? More precisely, Value at Risk is an estimate of the worst possible loss an investment could realize over a given time horizon, under normal market conditions...

Register Now

Unformatted Document Excerpt

Coursehero >> Massachusetts >> Harvard >> STATS 107

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.
107: Stat Introduction to Business and Financial Statistics Class 21: VaR and Resampling 1 Value at Risk Simply put, assume you have a $1,000,000 portfolio (very cool! ) You ask: What is the probability that I'd lose $X (OR MORE) over the next M months? More precisely, Value at Risk is an estimate of the worst possible loss an investment could realize over a given time horizon, under normal market conditions (defined by a given level of confidence). To make life simpler, lets ask what will happen over the next 1 month. For history of VaR see http://www.riskglossary.com/link/riskmetrics.htm 2 Choice of confidence level 95% 5% 95% VaR Investment returns Normal market conditions the returns that account for 95% of the distribution of possible outcomes. Abnormal market conditions the returns that account for the other 5% of the possible outcomes. Consider AAPL 5% 4 Example: VaR for AAPL > getSymbols("AAPL") [1] "AAPL" > aapl=monthlyReturn(AAPL) > length(aapl) [1] 52 > round(52*.05) [1] 3 > sort(as.numeric(aapl)) [1] -0.329558190 -0.316639742 [6] -0.078989964 -0.076388889 [11] -0.040694920 -0.027603225 [16] -0.013064272 -0.009097970 [21] 0.022740826 0.029499969 [26] 0.048744570 0.051001821 [31] 0.060530504 0.060722467 [36] 0.079313359 0.079646018 [41] 0.101896439 0.108246678 [46] 0.148470335 0.167215138 [51] 0.214328657 0.237701179 -0.138674598 -0.112900662 -0.088596783 -0.055004859 -0.053404892 -0.050704730 -0.020826845 -0.016124708 -0.013306532 -0.006489744 0.007013780 0.016994875 0.033789621 0.036670416 0.040934811 0.051959325 0.054124356 0.056004687 0.065396230 0.066561812 0.074157787 0.085081920 0.087037647 0.098097152 0.111021277 0.147160008 0.147816349 0.177023850 0.197012938 0.212195122 5 Using the quantile command Quantiles split the data set into different percentages. To find VaR, we want to find the lower 5% of the returns. Due to have quantiles are calculated (dont get me started!) the results wont be the same as the previous slide. > quantile(as.numeric(monthlyReturn(AAPL)),.05) 5% -0.1244989 6 Using the Normal Distribution Assume that the returns are normally distirbuted. Calculate the sample mean and std dev. Find the lower 5% point on the normal curve. > qnorm(.05,mean(monthlyReturn(AAPL)),sqrt(var(monthlyReturn(AAPL)))) [1] -0.1509124 7 Using Density Estimation If we examine a histogram of AAPL returns, they dont exactly look normal: 8 Density Estimation Can calculate VaR using the logspline density estimation command in R. Compare logspline density estimate versus normal normal distribution > library(logspline) > fit=logspline(as.numeric(monthlyReturn(AAPL))) 9 In R > hist(monthlyReturn(AAPL),prob=TRUE) > lines(x,dnorm(x,m,s)) > lines(x,dlogspline(x,fit)) 10 Calculating VaR Using Logspline We simple need to calculate the logspline quantile: > qlogspline(.05,fit) [1] -0.1668506 11 VaR in Performance Analytics VaR is a built in function in the PerformancAnalytics Package > VaR(monthlyReturn(AAPL),method="historical") monthly.returns VaR -0.1244989 > VaR(monthlyReturn(AAPL),method="gaussian") monthly.returns VaR -0.1491332 Everyone implements this stuff slightly differently so these results are slightly different than what we got eariler. 12 Confidence Interval for VaR There is a true VaR but it is unknown. The VaR we report is just an estimate. How accurate is it? We can create a confidence interval for VaR by resampling. 13 Resampling The practice of resampling is such an important and useful concept, that I wanted to spend another lecture on it. It does not rely on any modeling assumptions, and instead, lets the collected data drive the analysis. 14 Resampling versus Monte Carlo A Monte Carlo simulation assumes some inputs to a problem can be simulated as random variables. These inputs are then simulated many times, resulting in many solutions to the problem, which are then analyzed. 15 MC Example: Flipping a coin Suppose instead of buying and holding a stock, you decide to flip a coin each month. How would this compare to buy and hold? Clearly for a strongly up-trending stock this is a stupid idea (ok-its a stupid idea no matter what). 16 The Code mikeflip=function(sym) { stock = getSymbols(sym,auto.assign=FALSE) sret = monthlyReturn(stock) buyandhold = prod(1+sret) svals=1:100 n=length(sret) for(i in 1:100) { flips=1.0*(runif(n)>.5) svals[i]=prod(1+(sret*flips)) } cat("Coin flip beats buy and hold = ",sum(svals>buyandhold)/100,"\n") } 17 The Output > mikeflip("MRK") Coin flip beats buy > mikeflip("MRK") Coin flip beats buy > mikeflip("AAPL") Coin flip beats buy > mikeflip("AAPL") Coin flip beats buy > mikeflip("JNJ") Coin flip beats buy > mikeflip("JNJ") Coin flip beats buy > mikeflip("PRPFX") Coin flip beats buy > mikeflip("FMAGX") Coin flip beats buy and hold = 0.69 and hold = 0.68 and hold = 0.03 and hold = 0.06 and hold = 0.66 and hold = 0.51 and hold = 0.04 and hold = 0.63 18 Resampling versus Monte Carlo In resampling, the object of interest is a statistic which is a function of the data (x1,x2,x3,..). This might be (x1,x2,x3,..) = mean(xs) (x1,x2,x3,..) = median(xs) (x1,x2,x3,..) = VaR(xs) 19 How resampling works One literally resamples the data, that is, draws random samples of size n from the observed data set. For each resampled data set, one can compute i(x1,x2,x3,..) This is done say 10000 times, producing 10000 is. A confidence interval is then calculated. 20 How the CI is calculated There are several ways to calculate a confidence interval once 10000 estimates are obtained: Empirical CI; sort the values and take the middle 95% Normality; mean +/- 1.96*(std dev) The middle 95% from a density estimate. 21 Example with the mean The usual 95% confidence interval for a population mean from a sample of size n is given by x t (.025,n-1) s n 22 Example: the sample mean Suppose we want to create a confidence interval for mean exam score from the following data: x t (.025,n-1) s n 23 If you didnt know the formula Resample the returns a large number of times, Computing the mean return for each resample. resample. n=10000 vals=1:n exam=c(78,88,62,90,99,86,85,92,94,75,53,92) sampsize=length(exam) for(i in 1:n) { resampvals=sample(exam,sampsize,replace=TRUE) vals[i]=mean(resampvals) } 24 Empirical 95% Confidence Interval We take the 10000 computed means and sort them from smallest to largest The empirical 95% confidence will be the values between the lower 2.5 percentile and upper 97.5% > ord=order(vals) > svals=vals[ord] > svals[250] [1] 74.75 > svals[9750] [1] 89.66667 Close! 25 CI based on the normal distribution The mean of the 10000 resampled values +/1.96 * standard deviation > mean(vals)-1.96*sqrt(var(vals)) [1] 75.44916 > mean(vals)+1.96*sqrt(var(vals)) [1] 90.2535 26 CI based on a density estimate Fit a density estimate to the resampled values, then find the inner 95% of that resulting density. > fit=logspline(vals) > qlogspline(.025,fit) [1] 74.96168 > qlogspline(.975,fit) [1] 89.67376 27 Your statistical toolbox Two important techniques in your toolbox Resampling Use it whenever you devise a new function of your data (like Gain-Loss Spread) and what to understand its variability Density estimation Use it to model historical returns, output of a process, etc. 28 BTW, History of Density Estimation In statistics, kernel density estimation is a non-parametric way of estimating the probability density function of a random variable. Kernel density estimation is a fundamental data smoothing problem where inferences about the population are made, based on a finite data sample. In some fields such as signal processing and econometrics it is also known as the Parzen-Rosenblatt window method, after Emanuel Parzen and Murray Rosenblatt, who are usually credited with independently creating it in its current form,[1][2]. 29 Recall Value at Risk (Var) Easiest to look at a picture 30 Finding VaR by Density Estimation Can calculate VaR using the logspline density estimation command in R. > library(logspline) > fit=logspline(as.numeric(monthlyReturn(AAPL))) 31 In R > hist(monthlyReturn(AAPL),prob=TRUE) > lines(x,dnorm(x,m,s)) > lines(x,dlogspline(x,fit)) 32 Calculating VaR Using Logspline We simply need to calculate the logspline quantile: > library(logspline) > fit=logspline(as.numeric(monthlyReturn(AAPL))) > qlogspline(.05,fit) [1] -0.1668506 33 Pictorially Area = 5% -0.1668506 34 Resampling VaR Code based on density estimation n=1000 vals=1:n rets=monthlyReturn(AAPL) sampsize=length(rets) fit=logspline(as.numeric(rets)) for(i in 1:n) { resampvals=rlogspline(sampsize,fit) vals[i]=VaR(resampvals) ## many ways to compute VaR } 35 Analyzing the Output The VaR, and 95% confidence interval > qlogspline(.05,fit) [1] -0.1674382 > fit2=logspline(vals) > -0.2695005 > qlogspline(.025,fit2) [1] qlogspline(.975,fit2) [1] -0.07528924 36 Resampling = the Bootstrap The Bootstrap is another name for resampling pick yourself up by your bootstraps Let the data tell you about itself. 37 Brad Efron Brad Efron from Stanford invented the bootstrap (and proved this simple yet elegant idea works). Efron Dad Mom Me 38 The Bootstrap in R Although resampling/bootstrap code is easy to write, there is a bootstrap routine built into R. library(bootstrap) The function call: bootstrap(x,nboot,theta,..., func=NULL) The data The number of bootstraps The function to bootstrap 39 The Mean Example Again Running this in R > bfit=bootstrap(exam,10000,mean) > fit=logspline(bfit$thetastar) > qlogspline(.025,fit) [1] 74.90456 > qlogspline(.9755,fit) [1] 89.5573 See bootstrap package for more ways to compute confidence intervals 40 Bootstrap VaR Now easy to bootstrap VaR > getSymbols("AAPL") [1] "AAPL" > aaplret=monthlyReturn(AAPL) > bfit=bootstrap(as.numeric(aaplret),1000,VaR) > bfits=bfit$thetastar > fit=logspline(bfits) > qlogspline(.025,fit) [1] -0.2552234 > qlogspline(.975,fit) Note-not a symmetric [1] -0.07512234 confidence interval-doesnt > VaR(aaplret) have to be! monthly.returns VaR -0.1736913 41 Remember the Bootstrap The bootstrap (resampling) is an incredibly powerful tool to keep around. It is easy to explain to people Enables one to create confidence intervals for anything you can estimate from the data, (VaR, Omega, whatever) without worrying about complex math. 42 Playing with Density Estimation Risk Measures We have seen that the standard deviation of returns is a useful risk measure. What if we calculate the probability of losing money money and use that as a risk measure? 43 Example Compare AAPL, GOOG and JNJ By standard deviation > sqrt(var(aaplret)) monthly.returns monthly.returns 0.1120790 > sqrt(var(googret)) monthly.returns monthly.returns 0.1016935 > sqrt(var(jnjret)) monthly.returns monthly.returns 0.04568969 44 Compare by VaR Comparing by VaR > VaR(aaplret) monthly.returns VaR -0.1736913 > VaR(googret) monthly.returns VaR -0.1460762 > VaR(jnjret) monthly.returns VaR -0.0812052 45 Compare by P(ret < 0) Compute probability of a negative return > fit.appl=logspline(as.numeric(aaplret)) > fit.goog=logspline(as.numeric(googret)) > fit.jnj=logspline(as.numeric(jnjret)) > plogspline(0,fit.appl) [1] 0.3064950 > plogspline(0,fit.goog) [1] 0.4355341 > plogspline(0,fit.jnj) [1] 0.4694262 Riskiest?? 46 Remember Fat Tails JNJ AAPL GOOG This is why VaR is a useful measure 47 Playing with Density Estimation Random Forecasting Suppose we took a bunch of historical daily returns data and fit a density estimate to it. We then randomly generate 20 (say) returns from this distribution to predict a stock price 20 days into the future. How well would it do? 48 The Code The basic R code getSymbols("GE",from="2010-01-01",to="2011-03-11") ret=as.numeric(dailyReturn(GE)) fit=logspline(ret) samp=rlogspline(20,fit) newp=last(Cl(GE))*prod(1+samp) The variable newp is our predicted price 20 days in the future. 49 How does it do? Here is some R code as a function now mpredict=function(sym) { sdata=getSymbols(sym,from="2010-01-01",to="2011-0311",auto.assign=FALSE) ret=as.numeric(dailyReturn(sdata)) fit=logspline(ret) samp=rlogspline(20,fit) newp=last(Cl(sdata))*prod(1+samp) last20 = Cl(getSymbols(sym,from="2011-03-12",auto.assign=FALSE)) cat("PREDICTED PRICE = ",newp,"ACTUAL PRICE =",last(last20),"\n") } 50 How does it do? Here is some output-Ill take that first prediction > mpredict("GE") PREDICTED PRICE = > mpredict("GE") PREDICTED PRICE = > mpredict("GE") PREDICTED PRICE = > mpredict("GE") PREDICTED PRICE = > mpredict("GE") PREDICTED PRICE = > mpredict("GE") PREDICTED PRICE = > mpredict("GE") PREDICTED PRICE = 20.15663 ACTUAL PRICE = 20.19 22.14141 ACTUAL PRICE = 20.19 20.24312 ACTUAL PRICE = 20.19 22.50563 ACTUAL PRICE = 20.19 22.30143 ACTUAL PRICE = 20.19 21.89173 ACTUAL PRICE = 20.19 22.00789 ACTUAL PRICE = 20.19 51 Looks like this idea sucks Trying SPY > mpredict("SPY") PREDICTED PRICE = > mpredict("SPY") PREDICTED PRICE = > mpredict("SPY") PREDICTED PRICE = > mpredict("SPY") PREDICTED PRICE = > mpredict("SPY") PREDICTED PRICE = 135.4648 ACTUAL PRICE = 132.86 124.4090 ACTUAL PRICE = 132.86 133.5763 ACTUAL PRICE = 132.86 128.8359 ACTUAL PRICE = 132.86 136.2620 ACTUAL PRICE = 132.86 52 Dont even think about AAPL Ugh! > mpredict("AAPL") PREDICTED PRICE = > mpredict("AAPL") PREDICTED PRICE = > mpredict("AAPL") PREDICTED PRICE = > mpredict("AAPL") PREDICTED PRICE = > mpredict("AAPL") PREDICTED PRICE = 390.8149 ACTUAL PRICE = 335.06 359.5131 ACTUAL PRICE = 335.06 358.1080 ACTUAL PRICE = 335.06 434.0794 ACTUAL PRICE = 335.06 330.2102 ACTUAL PRICE = 335.06 53 What if we average lots of predictions? Still basically sucks > mpredictavg("GE") AVG PREDICTED PRICE = > mpredictavg("AAPL") AVG PREDICTED PRICE = > mpredictavg("SPY") AVG PREDICTED PRICE = > mpredictavg("SPY") AVG PREDICTED PRICE = > mpredictavg("JNJ") AVG PREDICTED PRICE = > mpredictavg("SSO") AVG PREDICTED PRICE = > mpredictavg("SDS") AVG PREDICTED PRICE = > mpredictavg("DIA") AVG PREDICTED PRICE = > 20.89974 ACTUAL PRICE = 20.19 363.9570 ACTUAL PRICE = 335.06 132.3680 ACTUAL PRICE = 132.86 132.4612 ACTUAL PRICE = 132.86 59.39538 ACTUAL PRICE = 59.46 52.73392 ACTUAL PRICE = 53.47 21.18263 ACTUAL PRICE = 20.83 121.6629 ACTUAL PRICE = 123.65 Keep in mind, were focusing on predicting one day 54 Hmmmm Predicting prices is hard What if all we want to do is predict direction? Hmmm That is, at the start the 20 day period, we want to know whether to go long or short the stock. Would our prediction work as a directional indicator? 55 More R code (phew) Code fragment if (as.numeric(last(last20))>as.numeric(last(Cl(sdata)))) tdir="UP" if (as.numeric(last(last20))<as.numeric(last(Cl(sdata)))) tdir="DOWN" if (as.numeric(last(last20))==as.numeric(last(Cl(sdata)))) tdir="FLAT" if (as.numeric(mean(snewp))>as.numeric(last(Cl(sdata)))) pdir="UP" if (as.numeric(mean(snewp))<as.numeric(last(Cl(sdata)))) pdir="DOWN" if (as.numeric(mean(snewp))==as.numeric(last(Cl(sdata)))) pdir="FLAT" 56 Hmm-does it work or not? > mdirection("GE") ----------- STOCK = GE ----------------------Day 21 = 20.36 PREDICTION = 20.86483 LAST DAY = 20.19 PREDICTED DIR = UP ACTUAL DIR = DOWN --------------------------------> mdirection("AAPL") ----------- STOCK = AAPL ----------------------Day 21 = 351.99 PREDICTION = 364.0584 LAST DAY = 335.06 PREDICTED DIR = UP ACTUAL DIR = DOWN --------------------------------> mdirection("SPY") ----------- STOCK = SPY ----------------------Day 21 = 130.84 PREDICTION = 132.3852 LAST DAY = 132.86 PREDICTED DIR = UP ACTUAL DIR = UP --------------------------------> mdirection("DIA") ----------- STOCK = DIA ----------------------Day 21 = 120.42 PREDICTION = 121.5847 LAST DAY = 123.65 PREDICTED DIR = UP ACTUAL DIR = UP --------------------------------> mdirection("SDS") ----------- STOCK = SDS ----------------------Day 21 = 21.75 PREDICTION = 21.09891 LAST DAY = 20.83 PREDICTED DIR = DOWN ACTUAL DIR = DOWN --------------------------------- 57 Try the NASDAQ 100 stocks ----------- STOCK = ALTR ----------------------Day 21 = 40.46 PREDICTION = 42.10049 LAST DAY = 42.81 PREDICTED DIR = UP ACTUAL DIR = UP ------------------------------------------- STOCK = AMZN ----------------------Day 21 = 168.07 PREDICTION = 170.7999 LAST DAY = 184.71 PREDICTED DIR = UP ACTUAL DIR = UP ------------------------------------------- STOCK = AMGN ----------------------Day 21 = 53.53 PREDICTION = 53.54674 LAST DAY = 53.9 PREDICTED DIR = UP ACTUAL DIR = UP ------------------------------------------- STOCK = APOL ----------------------Day 21 = 42.29 PREDICTION = 41.51876 LAST DAY = 42.11 PREDICTED DIR = DOWN ACTUAL DIR = DOWN ------------------------------------------- STOCK = AAPL ----------------------Day 21 = 351.99 PREDICTION = 364.7487 LAST DAY = 335.06 PREDICTED DIR = UP ACTUAL DIR = DOWN --------------------------------- 58 Overall Statistics When we apply this technique to the nasdaq 100 stocks (for one particular day! Not very scientific). It is accurate on 67% of the stocks. Better than flipping a coin. To really test this we would have to try numerous days (and vary the number of days to predict for, and to use for the density estimate and this is why hedge funds hire statisticians.) 59
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:

Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 19: Value at Risk1Playing with PerformanceAnalyticsSome R CodegetSymbols(&quot;AAPL&quot;,from=&quot;2009-01-01&quot;)getSymbols(&quot;JNJ&quot;,from=&quot;2009-01-01&quot;)getSymbols(&quot;SPY&quot;,from=&quot;2009-01-01&quot;)aaplret=monthl
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 18: Performance Analytics, part 21Style AnalyticsIs a forthcoming package in R that will allowone to do style analysis; in particular rollingstyle analysis.Recall, we assume the style
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 17: Performance Analytics, part 112Pairs Trading ReduxWe have you backtest a pairs tradingstrategy on this weeks homework.Based on an idea presented in a Brazilianpaperpaper on the
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 16: Pontificating about the Project and Beta1The Class ProjectImportant DatesApril 10th: project proposalMay 1st: project dueThere are least two directions one can takefor the final
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 15: Single Index Models, part 21Oh that Wayne.2Whats in the worksDear Prof. Parzen,I hope that you enjoyed the spring break. The IOP, Harvard Dems,Libertarians, and I have been talki
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 13: The Single Index Model1The World is Complicated2Systemic RiskFinancial Stability Board: a risk of disruption to financialservices that is caused by an impairment of all or parts o
Harvard - STATS - 107
STATE STREET ASSOCIATESOutlineSystemic risk:Applications for investors and policymakersThe absorption ratio as a measure of implied systemic riskThe absorption ratio and the pricing of risky assetsMark KritzmanWindham Capital ManagementMIT Sloan S
Harvard - STAT - 107
Stat 107: Introduction to Business and Financial StatisticsClass 10: Portfolios, part 31Recall: The Efficient FrontierMaximumReturn PortfolioExpected ReturnEfficient PortfoliosEfficientFrontierInefficient PortfoliosMinimum Variance PortfolioRi
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 9: Portfolios, part 21Return on a portfolioAssume we have n stocks of interestLet Ri be a random variable denoting thereturn of stockHence the return on a portfolio is given bytheth
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 6: Simulation (cont) andPortfolios, part 11Simulating Two AssetsIn the previous examples, we assumed wewere simply investing in one asset, themarket index.But that was purely for eas
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 4: Monte Carlo Simulation1Historical NoteThe name Monte Carlo simulation comesfrom the computer simulations performedduring the 1930s and 1940s to estimate theprobability that the cha
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 4: Statistics Review, Part II1As January goes so does the yearhttp:/blog.stocktradersalmanac.com/post/As-January-Goes-so-Goes-the-Year 2The Data3Review of Basic Statistics (cont)Rand
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 3: Statistics Review, Part I1Homework DiscussionDue Midnight Friday night via emailstat107spring2012@gmail.comIdea of Momentumpapers on websiteetfreplay.com200 day moving average (mo
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 2: Computing Discussion1What to ReadSomeone last time asked what web sites Iread. Too many is the short answer!But an interesting study was recentlyreleased that is good to look at ca
Harvard - STATS - 107
Stat 107: Introduction to Business and Financial StatisticsClass 1: Introduction1Where Am I?Michael Parzen: Sci 300bOffice Phone: 617-495-8711Google Voice: 617-942-0621Email: mparzen@stat.harvard.edu2Who Am I?3WarningThis is the first second(!
Texas San Antonio - BIO - 1404
Biology Notes 4/17/12From Gene to proteinTranscription&amp;TranslationiClicker: Which of the following is the best example of gene expression?-mouse fur color resultsfrom pigment formed by gene encoded enzymesBacterial Cell:-Bacteria can simultaneously
Texas San Antonio - BIO - 1404
Biology Notes 4/19/12Regulation of gene expression-Bacterial Operons-Repressible tryptophan operon-Inducible lactose operon-Differential Gene Expression in EukaryotesBacterial Operon Modelprecursor-&gt;enzyme 1-&gt;enzyme 2-&gt;enzyme 3-&gt;tryptophanoperon-a
Texas San Antonio - SOC - 1013
Sociology Notes 4/16/12 Religion and SociologyWhat is religion? Set of beliefs adhered by the members of a community, incorporating symbols regarded with a sense of awe or wonder together with ritual practicesTheism A belief in on or more supernatura
Texas San Antonio - SOC - 1013
Sociology Notes 4/20Civil religion: Pledge of Allegiance U.S. Currency Oath of Office Oath in CourtScientology Aliens dropped into volcanoes in hawaii other religions are also crazy/all over the place hinduism, rebirth it will eventually become
Texas San Antonio - CHEM - 1122
Lab Final85-90% multiple choicemaybe some short answer2 hours!21 questions7 mathReview:hyrdate problemsnaming compounds p.61 from chemistry booklimiting reagent problembalance equation, convert all reactants to moles, use balanced equations, whi
Texas San Antonio - MAT - 1093
MAT 1093 Test 3 ReviewName_MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.Match the point in polar coordinates with either A, B, C, or D on the graph.1) 3,354BA321-5-4-3-2-112345
University of Texas - MS - 3053
First published in Exchange, the magazine of the Brigham Young University School of Business,the following twelve categories were developed to cover the root or cause of most ethicalbusiness dilemmas that one might encounter in their jobs. The following
University of Texas - SPN - 610
University of Texas - SPN - 610
University of Texas - SPN - 610
University of Texas - SPN - 610
University of Texas - SPN - 610
University of Texas - SPN - 610
University of Texas - SPN - 610
University of Texas - SPN - 610
University of Texas - ACC - 312
ACC 312 Fundamentals of Managerial AccountingMidterm Exam I, Spring 2012, Wednesday February 22nd 2012ACC 312 Fundamentals of Managerial AccountingMidterm Exam I, Spring 2012, Wednesday February 22nd 2012NameUTEID_InstructorClass Day_ TimeDO NOT
University of Texas - ACC - 312
University of Texas - ACC - 312
University of Texas - OM - 335
OM 335: Homework Assignment 11 SolutionsProblem 1:Home Depot is a large hardware store located in Long Beach Mall: The EverlastBinder, a special purpose glue is one of the items it sells. Each unit of EverlastBinder costs Home Depot $10. There is an a
UCSD - BILD - 1
Problem Set A1. If you know that Boron has an atomic number of 5 and an atomic mass of 11, what doyou know about the number of protons, electrons, and neutrons in its atoms?2. What is special about the outer electron shell, and what can you predict fro
UCSD - BILD - 1
1.a) What are the components of a phospholipid?b) How does each component affect the hydrophilicity or hydrophobicity of themolecule?c) Draw a simple picture of a phospholipid bilayer and indicate where thehydrophilic and hydrophobic regions are loca
UCSD - BILD - 1
1. Describe the experiment which demonstrated that proteins within the plasma membraneare able to move freely within the bilayer.2.a) How do the conditions inside a lysosome differ from those in the cytosol?b) How does the function of this organelle i
UCSD - BILD - 1
BILD 1 Problem Set D:1. Do enzymes make reactions more thermodynamically favorable (i.e. affect delta G)? Defend youranswer.2. How (specifically) does an enzyme catalyze a reaction?3. Draw the Free Energy and reaction progress graph for Exergonic and
UCSD - BILD - 1
BILD 1 Problem Set E1) Plant cells feature both mitochondria and chloroplasts. Indicate whether the following events occur duringPHOTOSYNTHESIS (P), RESPIRATION (R), or BOTH (B). Only one answer applies to each process.Hydrolysis of ATPOxidation of wa
UCSD - BILD - 1
BILD 1 Problem Set F:1) A gorilla has 48 chromosomes in its somatic cells. How many chromosomes did the gorilla inheritfrom each parent? How many chromosomes will be in the gametes of the gorilla? How manychromosomes will be in the somatic cells of the
UCSD - BILD - 1
Problem Set G, Winter 20111. What does the following pedigree tell you about the expressed trait? What are the genotypesof the first generation mother and father? What are the genotypes of their children? (hint, payattention to the genders).2. We now
UCSD - BILD - 1
Functional Groups andThermodynamicsBrian TsuiBILD 1 Review Session1/29/12OutlineThe 7 key functional groups in BILD 1CarbonylAminoSulfhydrylPhosphateHydroxylMethylThermodynamicsMetabolic PathwaysFunctional GroupsHydroxyl (Alcohols)Charact
UCSD - BILD - 1
1) Which of the following effects is produced by the high surface tension of water?A) Lakes don't freeze solid in winter, despite low temperatures.B) Water ows upward from the roots to the leaves in plants.C) Evaporation of sweat from the skin helps to
UCSD - BILD - 1
Answer KeyTestname: 11E11) B2) B3) C4) C5) C6) D7) B8) C9) D10) B11) E12) C13) B14) A15) D16) B17) A18) D19) B20) B21) E22) C23) D24) A25) C26) B27) C28) D29) C30) B31) C32) B33) D34) E35) D36) E37) C38) E39) A40)
UCSD - BILD - 1
Answer KeyTestname: 08E1A1) A2) A3) E4) E5) A6) A7) D8) B9) A10) A11) B12) D13) D14) E15) D16) E17) B18) A19) E20) A21) B22) E23) D24) C25) B26) B27) C28) C29) C30) A31) A32) A33) B34) C35) B36) D37) D38) C39) B40
UCSD - BILD - 1
1) Which of the following is true of both starch and cellulose?A) They are both polymers of glucose.B) They are both structural components of the plant cell wall.C) They can both be digested by humans.D) They are both used for energy storage in plants
UCSD - BILD - 1
MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.1) Why is it important that an experiment include a control group?A) The control group is the group that the researcher is in control of; it is the gro
UCSD - BILD - 1
1) An example of a drug that would affect anaphase more than other steps of mitosis is one thatA) prevents elongation of microtubules.B) prevents shortening of microtubules.C) prevents attachment of the microtubules to the kinetochore.D) increases cyc
UCSD - BILD - 1
1) The general name for an enzyme that transfers phosphate groups from ATP to a protein isA) phosphatase.B) protease.C) phosphorylase.D) kinase.E) ATPase.2) A cell divides to produce two daughter cells that are genetically different.A) The statemen
UCSD - CHEM - 6B
VSEPR Theory Reviewwww.solonschools.org/accounts/bsabol/VSEPRTheoryPPT.ppt Predicts the molecular shape of a bonded molecule Electrons around the central atom arrangethemselves as far apart from each other as possible Unshared pairs of electrons (lon
UCSD - CHEM - 6B
VSEPR Theory ReviewNo Lone Pairs All sites equivalentNo Lone Pairs Sites not equivalent for AX5www.solonschools.org/accounts/bsabol/VSEPRTheoryPPT.ppt Predicts the molecular shape of a bonded molecule Electrons around the central atom arrangethemsel
UCSD - CHEM - 6B
Chapter 12 Intermolecular Forces: Liquids,Solids and Phase Changes Lecture 6Overview of physical states and phase changesQuantitative aspects of phase changesTypes of intermolecular forcesProperties of the liquid stateProperties of the liquid state
UCSD - CHEM - 6B
Molecular Basis of Surface Tensionsurface tension(J/m2) at 20 oCsubstanceformuladiethyl etherCH3CH2OCH2CH31.7 x 10-2dipole-dipole; dispersionethanolCH3CH2OH2.3 x 10-2H-bondingbutanolCH3CH2CH2CH2OH2.5 x 10-2H-bonding; dispersionH2O7.3 x 1
UCSD - CHEM - 6B
Chapter 13 Solution-Colligative Properties Part IKummel UCSDReview of Solubility and IMFHeats of Solvation vs Heats of SolutionColligative PropertiesVapor PressureBoiling Point ElevationFreezing Point DepressionOsmotic PressureGeorge MasonPredic
UCSD - CHEM - 6B
Dimensions of Culture ProgramWinter Quarter 2012http:/marshall.ucsd.edu/doc/doc-2.htmlRevised 1/05/12SYLLABUSDOC 2: JusticeLecturers:Dr. Valerie Hartouni, Dept. of Communication: Lecture A, MWF 11:00-11:50, HSS 1330Dr. Robert Horwitz, Dept. of Com
UCSD - MATH - 10C
1 /25/12www.math.ucsd.edu/~mdhyatt/math10c/syllabus.htmMath 10C CalculusWinter 2012 Course SyllabusCourse: Math 10CTitle: CalculusCredit Hours: 4Prerequisite: AP Calculus BC score of 3, 4, or 5, or Math 10B with a grade of C- or better, or Math 20B
UCSD - DOC - 3
DOC 3: Imaginationhttp:/marshall.ucsd.edu/doc/doc3Dimensions of Culture ProgramSpring Quarter 2012JOURNAL ASSIGNMENT Due to your TA in lecture, Friday, April 13In this journal, you will consider how cultural texts represent larger historical and ideo
UCSD - DOC - 3
Dimensions of Culture ProgramSpring Quarter 2012revised 3/29/12http:/marshall.ucsd.edu/doc/doc-3.htmlSYLLABUSDOC 3: ImaginationLecturers:Dr. John Rouse, Dept. of Theatre &amp; Dance:Dr. David Serlin, Dept. of Communication:Dr. Robert Cancel, Dept. of
UCSD - DOC - 3
DOC Sequence Key TermsDOC 1DOC 2DOC 3ideology,hegemony,intersectionality,historical artifacts,counter-hegemony,American Exceptionalism,Immigration,socially constructedhierarchies,social movements,ideological formation,racial formation,raci
UCSD - DOC - 3
Dimensions of Culture ProgramDOC 3: ImaginationANALYZING CULTURAL TEXTS: GLOSSARYWhen analyzing texts, you will need to pay close attention to the details and how they suggest certaintensions, themes, or meanings. This is called a close reading. Below
UCSD - DOC - 3
DOC 3: ImaginationDimensions of Culture ProgramWRITING ABOUT IMAGINATIVE TEXTS-Welcome to DOC 3!DOC 3 introduces a new set of critical reading and writing strategies that build on the strategies of argumentintroduced in DOC 1 and 2. DOC 1 introduced