CS 188 Introduction to Artificial Intelligence Fall 2018 Note 4

Size: px
Start display at page:

Download "CS 188 Introduction to Artificial Intelligence Fall 2018 Note 4"

Transcription

1 CS 188 Introduction to Artificil Intelligence Fll 2018 Note 4 These lecture notes re hevily bsed on notes originlly written by Nikhil Shrm. Non-Deterministic Serch Picture runner, coming to the end of his first ever mrthon. Though it seems likely he will complete the rce nd clim the ccompnying everlsting glory, it s by no mens gurnteed. He my pss out from exhustion or misstep nd slip nd fll, trgiclly breking both of his legs. Even more unlikely, literlly erth-shttering erthquke my spontneously occur, swllowing up the runner mere inches before he crosses the finish line. Such possibilities dd degree of uncertinty to the runner s ctions, nd it s this uncertinty tht will be the subject of the following discussion. In the first note, we tlked bout trditionl serch problems nd how to solve them; then, in the third note, we chnged our model to ccount for dversries nd other gents in the world tht influenced our pth to gol sttes. Now, we ll chnge our model gin to ccount for nother influencing fctor the dynmics of world itself. The environment in which n gent is plced my subject the gent s ctions to being nondeterministic, which mens tht there re multiple possible successor sttes tht cn result from n ction tken in some stte. This is, in fct, the cse in mny crd gmes such s poker or blckjck, where there exists n inherent uncertinty from the rndomness of crd deling. Such problems where the world poses degree of uncertinty re known s nondeterministic serch problems, nd cn be solved with models known s Mrkov decision processes, or MDPs. Mrkov Decision Processes A Mrkov Decision Process is defined by severl properties: A set of sttes S. Sttes in MDPs re represented in the sme wy s sttes in trditionl serch problems. A set of ctions A. Actions in MDPs re lso represented in the sme wy s in trditionl serch problems. A strt stte. Possibly one or more terminl sttes. Possibly discount fctor γ. We ll cover discount fctors shortly. A trnsition function T (s,,s ). Since we hve introduced the possibility of nondeterministic ctions, we need wy to delinete the likelihood of the possible outcomes fter tking ny given ction from ny given stte. The trnsition function for MDP does exctly this - it s probbility function which represents the probbility tht n gent tking n ction A from stte s S ends up in stte s S. CS 188, Fll 2018, Note 4 1

2 A rewrd function R(s,,s ). Typiclly, MDPs re modeled with smll "living" rewrds t ech step to rewrd n gent s survivl, long with lrge rewrds for rriving t terminl stte. Rewrds my be positive or negtive depending on whether or not they benefit the gent in question, nd the gent s objective is nturlly to cquire the mximum rewrd possible before rriving t some terminl stte. Constructing MDP for sitution is quite similr to constructing stte-spce grph for serch problem, with couple dditionl cvets. Consider the motivting exmple of rcecr: There re three possible sttes, S = {cool, wrm, overheted}, nd two possible ctions A = {slow, f st}. Just like in stte-spce grph, ech of the three sttes is represented by node, with edges representing ctions. Overheted is terminl stte, since once rcecr gent rrives t this stte, it cn no longer perform ny ctions for further rewrds (it s sink stte in the MDP nd hs no outgoing edges). Notbly, for nondeterministic ctions, there re multiple edges representing the sme ction from the sme stte with differing successor sttes. Ech edge is nnotted not only with the ction it represents, but lso trnsition probbility nd corresponding rewrd. These re summrized below: Trnsition Function: T (s,,s ) T (cool,slow,cool) = 1 T (wrm,slow,cool) = 0.5 T (wrm,slow,wrm) = 0.5 T (cool, f st,cool) = 0.5 T (cool, f st,wrm) = 0.5 T (wrm, f st,overheted) = 1 Rewrd Function: R(s,,s ) R(cool,slow,cool) = 1 R(wrm,slow,cool) = 1 R(wrm,slow,wrm) = 1 R(cool, f st,cool) = 2 R(cool, f st,wrm) = 2 R(wrm, f st, overheted) = 10 We represent the movement of n gent through different MDP sttes over time with discrete timesteps, defining s t S nd t A s the stte in which n gent exists nd the ction which n gent tkes t timestep t respectively. An gent strts in stte s 0 t timestep 0, nd tkes n ction t every timestep. The movement of n gent through MDP cn thus be modeled s follows: s s1 2 s2 3 s3... Additionlly, knowing tht n gent s gol is to mximize it s rewrd cross ll timesteps, we cn correspondingly express this mthemticlly s mximiztion of the following utility function: U([s 0, 0,s 1, 1,s 2,...]) = R(s 0, 0,s 1 ) + R(s 1, 1,s 2 ) + R(s 2, 2,s 3 ) +... CS 188, Fll 2018, Note 4 2

3 Mrkov decision processes, like stte-spce grphs, cn be unrveled into serch trees. Uncertinty is modeled in these serch trees with q-sttes, lso known s ction sttes, essentilly identicl to expectimx chnce nodes. This is fitting choice, s q-sttes use probbilities to model the uncertinty tht the environment will lnd n gent in given stte just s expectimx chnce nodes use probbilities to model the uncertinty tht dversril gents will lnd our gent in given stte through the move these gents select. The q-stte represented by hving tken ction from stte s is notted s the tuple (s,). Observe the unrveled serch tree for our rcecr, truncted to depth-2: The green nodes represent q-sttes, where n ction hs been tken from stte but hs yet to be resolved into successor stte. It s importnt to understnd tht gents spend zero timesteps in q-sttes, nd tht they re simply construct creted for ese of representtion nd development of MDP lgorithms. Finite Horizons nd Discounting There is n inherent problem with our rcecr MDP - we hven t plced ny time constrints on the number of timesteps for which rcecr cn tke ctions nd collect rewrds. With our current formultion, it could routinely choose = slow t every timestep forever, sfely nd effectively obtining infinite rewrd without ny risk of overheting. This is prevented by the introduction of finite horizons nd/or discount fctors. An MDP enforcing finite horizon is simple - it essentilly defines "lifetime" for gents, which gives them some set number of timesteps n to ccrue s much rewrd s they cn before being utomticlly terminted. We ll return to this concept shortly. Discount fctors re slightly more complicted, nd re introduced to model n exponentil decy in the vlue of rewrds over time. Concretely, with discount fctor of γ, tking ction t from stte s t t timestep t nd ending up in stte s t+1 results in rewrd of γ t R(s t, t,s t+1 ) insted of just R(s t, t,s t+1 ). Now, insted of mximizing the dditive utility U([s 0, 0,s 1, 1,s 2,...]) = R(s 0, 0,s 1 ) + R(s 1, 1,s 2 ) + R(s 2, 2,s 3 ) +... we ttempt to mximize discounted utility U([s 0, 0,s 1, 1,s 2,...]) = R(s 0, 0,s 1 ) + γr(s 1, 1,s 2 ) + γ 2 R(s 2, 2,s 3 ) +... Noting tht the bove definition of discounted utility function looks dngerously close to geometric series with rtio γ, we cn prove tht it s gurnteed to be finite-vlued s long s the constrint γ < 1 CS 188, Fll 2018, Note 4 3

4 (where n denotes the bsolute vlue opertor) is met through the following logic: U([s 0,s 1,s 2,...]) = R(s 0, 0,s 1 ) + γr(s 1, 1,s 2 ) + γ 2 R(s 2, 2,s 3 ) +... = t=0 γ t R(s t, t,s t+1 ) t=0 γ t R mx = R mx 1 γ where R mx is the mximum possible rewrd ttinble t ny given timestep in the MDP. Typiclly, γ is selected strictly from the rnge 0 < γ < 1 since vlues vlues in the rnge 1 < γ 0 re simply not meningful in most rel-world situtions - negtive vlue for γ mens the rewrd for stte s would flip-flop between positive nd negtive vlues t lternting timesteps. Mrkoviness Mrkov decision processes re "mrkovin" in the sense tht they stisfy the Mrkov property, or memoryless property, which sttes tht the future nd the pst re conditionlly independent, given the present. Intuitively, this mens tht, if we know the present stte, knowing the pst doesn t give us ny more informtion bout the future. To express this mthemticlly, consider n gent tht hs visited sttes s 0,s 1,...,s t fter tking ctions 0, 1,..., t 1 in some MDP, nd hs just tken ction t. The probbility tht this gent then rrives t stte s t+1 given their history of previous sttes visited nd ctions tken cn be written s follows: P(S t+1 = s t+1 S t = s t,a t = t,s t 1 = s t 1,A t 1 = t 1,...,S 0 = s 0 ) where ech S t denotes the rndom vrible representing our gent s stte nd A t denotes the rndom vrible representing the ction our gent tkes t time t. The Mrkov property sttes tht the bove probbility cn be simplified s follows: P(S t+1 = s t+1 S t = s t,a t = t,s t 1 = s t 1,A t 1 = t 1,...,S 0 = s 0 ) = P(S t+1 = s t+1 S t = s t,a t = t ) which is "memoryless" in the sense tht the probbility of rriving in stte s t time t + 1 depends only on the stte s nd ction tken t time t, not on ny erlier sttes or ctions. In fct, it is these memoryless probbilities which re encoded by the trnsition function: T (s,,s ) = P(s s,). Solving Mrkov Decision Processes Recll tht in deterministic, non-dversril serch, solving serch problem mens finding n optiml pln to rrive t gol stte. Solving Mrkov decision process, on the other hnd, mens finding n optiml policy π : S A, function mpping ech stte s S to n ction A. An explicit policy π defines reflex gent - given stte s, n gent t s implementing π will select = π(s) s the pproprite ction to mke without considering future consequences of its ctions. An optiml policy is one tht if followed by the implementing gent, will yield the mximum expected totl rewrd or utility. Consider the following MDP with S = {,b,c,d,e}, A = {Est,West,Exit} (with Exit being vlid ction only in sttes nd e nd yielding rewrds of 10 nd 1 respectively), discount fctor γ = 0.1, nd deterministic trnsitions: CS 188, Fll 2018, Note 4 4

5 Two potentil policies for this MDP re s follows: () Policy 1 (b) Policy 2 With some investigtion, it s not hrd to determine tht Policy 2 is optiml. Following the policy until mking ction = Exit yields the following rewrds for ech strt stte: Strt Stte Rewrd 10 b 1 c 0.1 d 0.1 e 1 We ll now lern how to solve such MDPs (nd much more complex ones!) lgorithmiclly using the Bellmn eqution for Mrkov decision processes. The Bellmn Eqution In order to tlk bout the Bellmn eqution for MDPs, we must first introduce two new mthemticl quntities: The optiml vlue of stte s, V (s) the optiml vlue of s is the expected vlue of the utility n optimlly-behving gent tht strts in s will receive, over the rest of the gent s lifetime. The optiml vlue of q-stte (s,), Q (s,) - the optiml vlue of (s,) is the expected vlue of the utility n gent receives fter strting in s, tking, nd cting optimlly henceforth. Using these two new quntities nd the other MDP quntities discussed erlier, the Bellmn eqution is defined s follows: V (s) = mx T (s,,s )[R(s,,s ) + γv (s )] s Before we begin interpreting wht this mens, let s lso define the eqution for the optiml vlue of q-stte (more commonly known s n optiml q-vlue): Q (s,) = s T (s,,s )[R(s,,s ) + γv (s )] Note tht this second definition llows us to reexpress the Bellmn eqution s V (s) = mxq (s,) which is drmticlly simpler quntity. The Bellmn eqution is n exmple of dynmic progrmming eqution, n eqution tht decomposes problem into smller subproblems vi n inherent recursive structure. We cn see this inherent recursion in the eqution for the q-vlue of stte, in the term CS 188, Fll 2018, Note 4 5

6 [R(s,,s ) + γv (s )]. This term represents the totl utility n gent receives by first tking from s nd rriving t s nd then cting optimlly henceforth. The immedite rewrd from the ction tken, R(s,,s ), is dded to the optiml rewrd ttinble from s, V (s ), which is discounted by γ to ccount for the pssge of the timestep in tking. Though in most cses there exists vst number of possible sequences of sttes nd ctions from s to some terminl stte, ll this detil is bstrcted wy nd encpsulted in single recursive vlue, V (s ). We cn now tke nother step outwrds nd consider the full eqution for q-vlue. Knowing [R(s,,s ) + γv (s )] represents the utility ttined by cting optimlly fter rriving in stte s from q-stte (s,), it becomes evident tht the quntity s T (s,,s )[R(s,,s ) + γv (s )] is simply weighted sum of utilities, with ech utility weighted by its probbility of occurrence. This is definitionlly the expected utility of cting optimlly from q-stte (s, ) onwrds! This completes our nlysis nd gives us enough insight to interpret the full Bellmn eqution - the optiml vlue of stte, V (s), is simply the mximum expected utility over ll possible ctions from s. Computing mximum expected utility for stte s is essentilly the sme s running expectimx - we first compute the expected utility from ech q-stte (s, ) (equivlent to computing the vlue of chnce nodes), then compute the mximum over these nodes to compute the mximum expected utility (equivlent to computing the vlue of mximizer node). One finl note on the Bellmn eqution its usge is s condition for optimlity. In other words, if we cn somehow determine vlue V (s) for every stte s S such tht the Bellmn eqution holds true for ech of these sttes, we cn conclude tht these vlues re the optiml vlues for their respective sttes. Indeed, stisfying this condition implies s S, V (s) = V (s). Vlue Itertion Now tht we hve frmework to test for optimlity of the vlues of sttes in MDP, the nturl follow-up question to sk is how to ctully compute these optiml vlues. To nswer this question, we need timelimited vlues (the nturl result of enforcing finite horizons). The time-limited vlue for stte s with time-limit of k timesteps is denoted V k (s), nd represents the mximum expected utility ttinble from s given tht the Mrkov decision process under considertion termintes in k timesteps. Equivlently, this is wht depth-k expectimx run on the serch tree for MDP returns. Vlue itertion is dynmic progrmming lgorithm tht uses n itertively longer time limit to compute time-limited vlues until convergence (tht is, until the V vlues re the sme for ech stte s they were in the pst itertion: s,v k+1 (s) = V k (s)). It opertes s follows: 1. s S, initilize V 0 (s) = 0. This should be intuitive, since setting time limit of 0 timesteps mens no ctions cn be tken before termintion, nd so no rewrds cn be cquired. 2. Repet the following updte rule until convergence: s S, V k+1 (s) mx T (s,,s )[R(s,,s ) + γv k (s )] s At itertion k of vlue itertion, we use the time-limited vlues for with limit k for ech stte to generte the time-limited vlues with limit (k + 1). In essence, we use computed solutions to subproblems (ll the V k (s)) to itertively build up solutions to lrger subproblems (ll the V k+1 (s)); this is wht mkes vlue itertion dynmic progrmming lgorithm. CS 188, Fll 2018, Note 4 6

7 Note tht though the Bellmn eqution looks essentilly identicl in construction to the updte rule bove, they re not the sme. The Bellmn eqution gives condition for optimlity, while the updte rule gives method to itertively updte vlues until convergence. When convergence is reched, the Bellmn eqution will hold for every stte: s S, V k (s) = V k+1 (s) = V (s). Let s see few updtes of vlue itertion in prctice by revisiting our rcecr MDP from erlier, introducing discount fctor of γ = 0.5: We begin vlue itertion by initiliztion of ll V 0 (s) = 0: cool wrm overheted V In our first round of updtes, we cn compute s S, V 1 (s) s follows: V 1 (cool) = mx{1 [ ], 0.5 [ ] [ ]} = mx{1, 2} = 2 V 1 (wrm) = mx{0.5 [ ] [ ], 1 [ ]} = mx{1, 10} = 1 V 1 (overheted) = mx{} = 0 cool wrm overheted V V Similrly, we cn repet the procedure to compute second round of updtes with our newfound vlues for CS 188, Fll 2018, Note 4 7

8 V 1 (s) to compute V 2 (s). V 2 (cool) = mx{1 [ ], 0.5 [ ] [ ]} = mx{2, 2.75} = 2.75 V 2 (wrm) = mx{0.5 [ ] [ ], 1 [ ]} = mx{1.75, 10} = 1.75 V 2 (overheted) = mx{} = 0 cool wrm overheted V V V It s worthwhile to observe tht V (s) for ny terminl stte must be 0, since no ctions cn ever be tken from ny terminl stte to rep ny rewrds. Policy Extrction Recll tht our ultimte gol in solving MDP is to determine n optiml policy. This cn be done once ll optiml vlues for sttes re determined using method clled policy extrction. The intuition behind policy extrction is very simple: if you re in stte s, you should tke the ction which yields the mximum expected utility. Not surprisingly, is the ction which tkes us to the q-stte with mximum q-vlue, llowing for forml definition of the optiml policy: s S, π (s) = rgmx Q (s,) = rgmx T (s,,s )[R(s,,s ) + γv (s )] s It s useful to keep in mind for performnce resons tht it s better for policy extrction to hve the optiml q-vlues of sttes, in which cse single rgmx opertion is ll tht is required to determine the optiml ction from stte. Storing only ech V (s) mens tht we must recompute ll necessry q-vlues with the Bellmn eqution before pplying rgmx, equivlent to performing depth-1 expectimx. Policy Itertion Vlue itertion cn be quite slow. At ech itertion, we must updte the vlues of ll S sttes (where n refers to the crdinlity opertor), ech of which requires itertion over ll A ctions s we compute the q-vlue for ech ction. The computtion of ech of these q-vlues, in turn, requires itertion over ech of the S sttes gin, leding to poor runtime of O( S 2 A ). Additionlly, when ll we wnt to determine is the optiml policy for the MDP, vlue itertion tends to do lot of overcomputtion since the policy s computed by policy extrction generlly converges significntly fster thn the vlues themselves. The fix for these flws is to use policy itertion s n lterntive, n lgorithm tht mintins the optimlity of vlue itertion while providing significnt performnce gins. Policy itertion opertes s follows: 1. Define n initil policy. This cn be rbitrry, but policy itertion will converge fster the closer the initil policy is to the eventul optiml policy. CS 188, Fll 2018, Note 4 8

9 2. Repet the following until convergence: Evlute the current policy with policy evlution. For policy π, policy evlution mens computing V π (s) for ll sttes s, where V π (s) is expected utility of strting in stte s when following π: V π (s) = s T (s,π(s),s )[R(s,π(s),s ) + γv π (s )] Define the policy t itertion i of policy itertion s π i. Since we re fixing single ction for ech stte, we no longer need the mx opertor which effectively leves us with system of S equtions generted by the bove rule. Ech V π i (s) cn then be computed by simply solving this system. Alterntively, we cn lso compute V π i (s) by using the following updte rule until convergence, just like in vlue itertion: V π i k+1 (s) s T (s,π i (s),s )[R(s,π i (s),s ) + γv π i k (s )] However, this second method is typiclly slower in prctice. Once we ve evluted the current policy, use policy improvement to generte better policy. Policy improvement uses policy extrction on the vlues of sttes generted by policy evlution to generte this new nd improved policy: π i+1 (s) = rgmx s T (s,,s )[R(s,,s ) + γv π i (s )] If π i+1 = π i, the lgorithm hs converged, nd we cn conclude tht π i+1 = π i = π. Let s run through our rcecr exmple one lst time (getting tired of it yet?) to see if we get the sme policy using policy itertion s we did with vlue itertion. Recll tht we were using discount fctor of γ = 0.5. We strt with n initil policy of Alwys go slow: cool wrm overheted π 0 slow slow Becuse terminl sttes hve no outgoing ctions, no policy cn ssign vlue to one. Hence, it s resonble to disregrd the stte overheted from considertion s we hve done, nd simply ssign i, V π i (s) = 0 for CS 188, Fll 2018, Note 4 9

10 ny terminl stte s. The next step is to run round of policy evlution on π 0 : V π 0 (cool) = 1 [ V π 0 (cool)] V π 0 (wrm) = 0.5 [ V π 0 (cool)] [ V π 0 (wrm)] Solving this system of equtions for V π 0(cool) nd V π 0(wrm) yields: We cn now run policy extrction with these vlues: cool wrm overheted V π π 1 (cool) = rgmx{slow : 1 [ ], f st : 0.5 [ ] [ ]} = rgmx{slow : 2, f st : 3} = f st π 1 (wrm) = rgmx{slow : 0.5 [ ] [ ], f st : 1 [ ]} = rgmx{slow : 3, f st : 10} = slow Running policy itertion for second round yields π 2 (cool) = f st nd π 2 (wrm) = slow. Since this is the sme policy s π 1, we cn conclude tht π 1 = π 2 = π. Verify this for prctice! cool wrm π 0 slow slow π 1 f st slow π 2 f st slow This exmple shows the true power of policy itertion: with only two itertions, we ve lredy rrived t the optiml policy for our rcecr MDP! This is more thn we cn sy for when we rn vlue itertion on the sme MDP, which ws still severl itertions from convergence fter the two updtes we performed. Summry The mteril presented bove hs much opportunity for confusion. We covered vlue itertion, policy itertion, policy extrction, nd policy evlution, ll of which look similr, using the Bellmn eqution with subtle vrition. Below is summry of when to use ech lgorithm: Vlue itertion: Used for computing the optiml vlues of sttes, by itertive updtes until convergence. Policy evlution: Used for computing the vlues of sttes under specific policy. Policy extrction: Used for determining policy given some stte vlue function. If the stte vlues re optiml, this policy will be optiml. This method is used fter running vlue itertion, to compute n optiml policy from the optiml stte vlues; or s subroutine in policy itertion, to compute the best policy for the currently estimted stte vlues. CS 188, Fll 2018, Note 4 10

11 Policy itertion: A technique tht encpsultes both policy evlution nd policy extrction nd is used for itertive convergence to n optiml policy. It tends to outperform vlue itertion, by virtue of the fct tht policies usully converge much fster thn the vlues of sttes. CS 188, Fll 2018, Note 4 11

Reinforcement Learning. CS 188: Artificial Intelligence Fall Grid World. Markov Decision Processes. What is Markov about MDPs?

Reinforcement Learning. CS 188: Artificial Intelligence Fall Grid World. Markov Decision Processes. What is Markov about MDPs? CS 188: Artificil Intelligence Fll 2010 Lecture 9: MDP 9/2/2010 Reinforcement Lerning [DEMOS] Bic ide: Receive feedbck in the form of rewrd Agent utility i defined by the rewrd function Mut (lern to) ct

More information

Gridworld Values V* Gridworld: Q*

Gridworld Values V* Gridworld: Q* CS 188: Artificil Intelligence Mrkov Deciion Procee II Intructor: Dn Klein nd Pieter Abbeel --- Univerity of Cliforni, Berkeley [Thee lide were creted by Dn Klein nd Pieter Abbeel for CS188 Intro to AI

More information

Non-Deterministic Search. CS 188: Artificial Intelligence Markov Decision Processes. Grid World Actions. Example: Grid World

Non-Deterministic Search. CS 188: Artificial Intelligence Markov Decision Processes. Grid World Actions. Example: Grid World CS 188: Artificil Intelligence Mrkov Deciion Procee Non-Determinitic Serch Dn Klein, Pieter Abbeel Univerity of Cliforni, Berkeley Exmple: Grid World Grid World Action A mze-like problem The gent live

More information

3: Inventory management

3: Inventory management INSE6300 Ji Yun Yu 3: Inventory mngement Concordi Februry 9, 2016 Supply chin mngement is bout mking sequence of decisions over sequence of time steps, fter mking observtions t ech of these time steps.

More information

DYNAMIC PROGRAMMING REINFORCEMENT LEARNING. COGS 202 : Week 7 Presentation

DYNAMIC PROGRAMMING REINFORCEMENT LEARNING. COGS 202 : Week 7 Presentation DYNAMIC PROGRAMMING REINFORCEMENT LEARNING COGS 202 : Week 7 Preenttion OUTLINE Recp (Stte Vlue nd Action Vlue function) Computtion in MDP Dynmic Progrmming (DP) Policy Evlution Policy Improvement Policy

More information

Outline. CS 188: Artificial Intelligence Spring Speeding Up Game Tree Search. Minimax Example. Alpha-Beta Pruning. Pruning

Outline. CS 188: Artificial Intelligence Spring Speeding Up Game Tree Search. Minimax Example. Alpha-Beta Pruning. Pruning CS 188: Artificil Intelligence Spring 2011 Lecture 8: Gme, MDP 2/14/2010 Pieter Abbeel UC Berkeley Mny lide dpted from Dn Klein Outline Zero-um determinitic two plyer gme Minimx Evlution function for non-terminl

More information

Announcements. CS 188: Artificial Intelligence Fall Reinforcement Learning. Markov Decision Processes. Example Optimal Policies.

Announcements. CS 188: Artificial Intelligence Fall Reinforcement Learning. Markov Decision Processes. Example Optimal Policies. CS 188: Artificil Intelligence Fll 2008 Lecture 9: MDP 9/25/2008 Announcement Homework olution / review eion: Mondy 9/29, 7-9pm in 2050 Vlley LSB Tuedy 9/0, 6-8pm in 10 Evn Check web for detil Cover W1-2,

More information

Chapter 3: The Reinforcement Learning Problem. The Agent'Environment Interface. Getting the Degree of Abstraction Right. The Agent Learns a Policy

Chapter 3: The Reinforcement Learning Problem. The Agent'Environment Interface. Getting the Degree of Abstraction Right. The Agent Learns a Policy Chpter 3: The Reinforcement Lerning Problem The Agent'Environment Interfce Objectives of this chpter: describe the RL problem we will be studying for the reminder of the course present idelized form of

More information

3/1/2016. Intermediate Microeconomics W3211. Lecture 7: The Endowment Economy. Today s Aims. The Story So Far. An Endowment Economy.

3/1/2016. Intermediate Microeconomics W3211. Lecture 7: The Endowment Economy. Today s Aims. The Story So Far. An Endowment Economy. 1 Intermedite Microeconomics W3211 Lecture 7: The Endowment Economy Introduction Columbi University, Spring 2016 Mrk Den: mrk.den@columbi.edu 2 The Story So Fr. 3 Tody s Aims 4 Remember: the course hd

More information

INF 4130 Exercise set 4

INF 4130 Exercise set 4 INF 4130 Exercise set 4 Exercise 1 List the order in which we extrct the nodes from the Live Set queue when we do redth first serch of the following grph (tree) with the Live Set implemented s LIFO queue.

More information

Maximum Expected Utility. CS 188: Artificial Intelligence Fall Preferences. MEU Principle. Rational Preferences. Utilities: Uncertain Outcomes

Maximum Expected Utility. CS 188: Artificial Intelligence Fall Preferences. MEU Principle. Rational Preferences. Utilities: Uncertain Outcomes CS 188: Artificil Intelligence Fll 2011 Mximum Expected Utility Why hould we verge utilitie? Why not minimx? Lecture 8: Utilitie / MDP 9/20/2011 Dn Klein UC Berkeley Principle of mximum expected utility:

More information

Recap: MDPs. CS 188: Artificial Intelligence Fall Optimal Utilities. The Bellman Equations. Value Estimates. Practice: Computing Actions

Recap: MDPs. CS 188: Artificial Intelligence Fall Optimal Utilities. The Bellman Equations. Value Estimates. Practice: Computing Actions CS 188: Artificil Intelligence Fll 2008 Lecture 10: MDP 9/30/2008 Dn Klein UC Berkeley Recp: MDP Mrkov deciion procee: Stte S Action A Trnition P(,) (or T(,, )) Rewrd R(,, ) (nd dicount γ) Strt tte 0 Quntitie:

More information

4/30/2012. Overview. MDPs. Planning Agent. Grid World. Review: Expectimax. Introduction & Agents Search, Heuristics & CSPs Adversarial Search

4/30/2012. Overview. MDPs. Planning Agent. Grid World. Review: Expectimax. Introduction & Agents Search, Heuristics & CSPs Adversarial Search Overview CSE 473 Mrkov Deciion Procee Dn Weld Mny lide from Chri Bihop, Mum, Dn Klein, Sturt Ruell, Andrew Moore & Luke Zettlemoyer Introduction & Agent Serch, Heuritic & CSP Adverril Serch Logicl Knowledge

More information

CH 71 COMPLETING THE SQUARE INTRODUCTION FACTORING PERFECT SQUARE TRINOMIALS

CH 71 COMPLETING THE SQUARE INTRODUCTION FACTORING PERFECT SQUARE TRINOMIALS CH 7 COMPLETING THE SQUARE INTRODUCTION I t s now time to py our dues regrding the Qudrtic Formul. Wht, you my sk, does this men? It mens tht the formul ws merely given to you once or twice in this course,

More information

Cache CPI and DFAs and NFAs. CS230 Tutorial 10

Cache CPI and DFAs and NFAs. CS230 Tutorial 10 Cche CPI nd DFAs nd NFAs CS230 Tutoril 10 Multi-Level Cche: Clculting CPI When memory ccess is ttempted, wht re the possible results? ccess miss miss CPU L1 Cche L2 Cche Memory L1 cche hit L2 cche hit

More information

Announcements. CS 188: Artificial Intelligence Fall Recap: MDPs. Recap: Optimal Utilities. Practice: Computing Actions. Recap: Bellman Equations

Announcements. CS 188: Artificial Intelligence Fall Recap: MDPs. Recap: Optimal Utilities. Practice: Computing Actions. Recap: Bellman Equations CS 188: Artificil Intelligence Fll 2009 Lecture 10: MDP 9/29/2009 Announcement P2: Due Wednedy P3: MDP nd Reinforcement Lerning i up! W2: Out lte thi week Dn Klein UC Berkeley Mny lide over the coure dpted

More information

Chapter55. Algebraic expansion and simplification

Chapter55. Algebraic expansion and simplification Chpter55 Algebric expnsion nd simplifiction Contents: A The distributive lw B The product ( + b)(c + d) C Difference of two squres D Perfect squres expnsion E Further expnsion F The binomil expnsion 88

More information

Static Fully Observable Stochastic What action next? Instantaneous Perfect

Static Fully Observable Stochastic What action next?  Instantaneous Perfect CS 188: Ar)ficil Intelligence Mrkov Deciion Procee K+1 Intructor: Dn Klein nd Pieter Abbeel - - - Univerity of Cliforni, Berkeley [Thee lide were creted by Dn Klein nd Pieter Abbeel for CS188 Intro to

More information

Announcements. Maximizing Expected Utility. Preferences. Rational Preferences. Rational Preferences. Introduction to Artificial Intelligence

Announcements. Maximizing Expected Utility. Preferences. Rational Preferences. Rational Preferences. Introduction to Artificial Intelligence Introduction to Artificil Intelligence V22.0472-001 Fll 2009 Lecture 8: Utilitie Announcement Will hve Aignment 1 grded by Wed. Aignment 2 i up on webpge Due on Mon 19 th October (2 week) Rob Fergu Dept

More information

Addition and Subtraction

Addition and Subtraction Addition nd Subtrction Nme: Dte: Definition: rtionl expression A rtionl expression is n lgebric expression in frction form, with polynomils in the numertor nd denomintor such tht t lest one vrible ppers

More information

UNIT 7 SINGLE SAMPLING PLANS

UNIT 7 SINGLE SAMPLING PLANS UNIT 7 SINGLE SAMPLING PLANS Structure 7. Introduction Objectives 7. Single Smpling Pln 7.3 Operting Chrcteristics (OC) Curve 7.4 Producer s Risk nd Consumer s Risk 7.5 Averge Outgoing Qulity (AOQ) 7.6

More information

9.3. Regular Languages

9.3. Regular Languages 9.3. REGULAR LANGUAGES 139 9.3. Regulr Lnguges 9.3.1. Properties of Regulr Lnguges. Recll tht regulr lnguge is the lnguge ssocited to regulr grmmr, i.e., grmmr G = (N, T, P, σ) in which every production

More information

Fully Observable. Perfect

Fully Observable. Perfect CS 188: Ar)ficil Intelligence Mrkov Deciion Procee II Stoch)c Plnning: MDP Sttic Environment Fully Obervble Perfect Wht ction next? Stochtic Intntneou Intructor: Dn Klein nd Pieter Abbeel - - - Univerity

More information

What is Monte Carlo Simulation? Monte Carlo Simulation

What is Monte Carlo Simulation? Monte Carlo Simulation Wht is Monte Crlo Simultion? Monte Crlo methods re widely used clss of computtionl lgorithms for simulting the ehvior of vrious physicl nd mthemticl systems, nd for other computtions. Monte Crlo lgorithm

More information

JFE Online Appendix: The QUAD Method

JFE Online Appendix: The QUAD Method JFE Online Appendix: The QUAD Method Prt of the QUAD technique is the use of qudrture for numericl solution of option pricing problems. Andricopoulos et l. (00, 007 use qudrture s the only computtionl

More information

A Fuzzy Inventory Model With Lot Size Dependent Carrying / Holding Cost

A Fuzzy Inventory Model With Lot Size Dependent Carrying / Holding Cost IOSR Journl of Mthemtics (IOSR-JM e-issn: 78-578,p-ISSN: 9-765X, Volume 7, Issue 6 (Sep. - Oct. 0, PP 06-0 www.iosrournls.org A Fuzzy Inventory Model With Lot Size Dependent Crrying / olding Cost P. Prvthi,

More information

Multi-Step Reinforcement Learning: A Unifying Algorithm

Multi-Step Reinforcement Learning: A Unifying Algorithm Multi-Step Reinforcement Lerning: A Unifying Algorithm Kristopher De Asis, 1 J. Fernndo Hernndez-Grci, 1 G. Zchris Hollnd, 1 Richrd S. Sutton Reinforcement Lerning nd Artificil Intelligence Lbortory, University

More information

A ppendix to. I soquants. Producing at Least Cost. Chapter

A ppendix to. I soquants. Producing at Least Cost. Chapter A ppendix to Chpter 0 Producing t est Cost This ppendix descries set of useful tools for studying firm s long-run production nd costs. The tools re isoqunts nd isocost lines. I soqunts FIGURE A0. SHOWS

More information

Arithmetic and Geometric Sequences

Arithmetic and Geometric Sequences Arithmetic nd Geometric Sequences A sequence is list of numbers or objects, clled terms, in certin order. In n rithmetic sequence, the difference between one term nd the next is lwys the sme. This difference

More information

164 CHAPTER 2. VECTOR FUNCTIONS

164 CHAPTER 2. VECTOR FUNCTIONS 164 CHAPTER. VECTOR FUNCTIONS.4 Curvture.4.1 Definitions nd Exmples The notion of curvture mesures how shrply curve bends. We would expect the curvture to be 0 for stright line, to be very smll for curves

More information

Technical Appendix. The Behavior of Growth Mixture Models Under Nonnormality: A Monte Carlo Analysis

Technical Appendix. The Behavior of Growth Mixture Models Under Nonnormality: A Monte Carlo Analysis Monte Crlo Technicl Appendix 1 Technicl Appendix The Behvior of Growth Mixture Models Under Nonnormlity: A Monte Crlo Anlysis Dniel J. Buer & Ptrick J. Currn 10/11/2002 These results re presented s compnion

More information

Outline. CSE 326: Data Structures. Priority Queues Leftist Heaps & Skew Heaps. Announcements. New Heap Operation: Merge

Outline. CSE 326: Data Structures. Priority Queues Leftist Heaps & Skew Heaps. Announcements. New Heap Operation: Merge CSE 26: Dt Structures Priority Queues Leftist Heps & Skew Heps Outline Announcements Leftist Heps & Skew Heps Reding: Weiss, Ch. 6 Hl Perkins Spring 2 Lectures 6 & 4//2 4//2 2 Announcements Written HW

More information

A Closer Look at Bond Risk: Duration

A Closer Look at Bond Risk: Duration W E B E X T E S I O 4C A Closer Look t Bond Risk: Durtion This Extension explins how to mnge the risk of bond portfolio using the concept of durtion. BOD RISK In our discussion of bond vlution in Chpter

More information

Continuous Optimal Timing

Continuous Optimal Timing Srlnd University Computer Science, Srbrücken, Germny My 6, 205 Outline Motivtion Preliminries Existing Algorithms Our Algorithm Empiricl Evlution Conclusion Motivtion Probbilistic models unrelible/unpredictble

More information

The Market Approach to Valuing Businesses (Second Edition)

The Market Approach to Valuing Businesses (Second Edition) BV: Cse Anlysis Completed Trnsction & Guideline Public Comprble MARKET APPROACH The Mrket Approch to Vluing Businesses (Second Edition) Shnnon P. Prtt This mteril is reproduced from The Mrket Approch to

More information

UNinhabited aerial vehicles (UAVs) are becoming increasingly

UNinhabited aerial vehicles (UAVs) are becoming increasingly A Process Algebr Genetic Algorithm Sertc Krmn Tl Shim Emilio Frzzoli Abstrct A genetic lgorithm tht utilizes process lgebr for coding of solution chromosomes nd for defining evolutionry bsed opertors is

More information

Roadmap of This Lecture

Roadmap of This Lecture Reltionl Model Rodmp of This Lecture Structure of Reltionl Dtbses Fundmentl Reltionl-Algebr-Opertions Additionl Reltionl-Algebr-Opertions Extended Reltionl-Algebr-Opertions Null Vlues Modifiction of the

More information

PSAS: Government transfers what you need to know

PSAS: Government transfers what you need to know PSAS: Government trnsfers wht you need to know Ferury 2018 Overview This summry will provide users with n understnding of the significnt recognition, presenttion nd disclosure requirements of the stndrd.

More information

Controlling a population of identical MDP

Controlling a population of identical MDP Controlling popultion of identicl MDP Nthlie Bertrnd Inri Rennes ongoing work with Miheer Dewskr (CMI), Blise Genest (IRISA) nd Hugo Gimert (LBRI) Trends nd Chllenges in Quntittive Verifiction Mysore,

More information

UNIVERSITY OF NOTTINGHAM. Discussion Papers in Economics BERTRAND VS. COURNOT COMPETITION IN ASYMMETRIC DUOPOLY: THE ROLE OF LICENSING

UNIVERSITY OF NOTTINGHAM. Discussion Papers in Economics BERTRAND VS. COURNOT COMPETITION IN ASYMMETRIC DUOPOLY: THE ROLE OF LICENSING UNIVERSITY OF NOTTINGHAM Discussion Ppers in Economics Discussion Pper No. 0/0 BERTRAND VS. COURNOT COMPETITION IN ASYMMETRIC DUOPOLY: THE ROLE OF LICENSING by Arijit Mukherjee April 00 DP 0/0 ISSN 160-48

More information

(a) by substituting u = x + 10 and applying the result on page 869 on the text, (b) integrating by parts with u = ln(x + 10), dv = dx, v = x, and

(a) by substituting u = x + 10 and applying the result on page 869 on the text, (b) integrating by parts with u = ln(x + 10), dv = dx, v = x, and Supplementry Questions for HP Chpter 5. Derive the formul ln( + 0) d = ( + 0) ln( + 0) + C in three wys: () by substituting u = + 0 nd pplying the result on pge 869 on the tet, (b) integrting by prts with

More information

The Okun curve is non-linear

The Okun curve is non-linear Economics Letters 70 (00) 53 57 www.elsevier.com/ locte/ econbse The Okun curve is non-liner Mtti Viren * Deprtment of Economics, 004 University of Turku, Turku, Finlnd Received 5 My 999; ccepted 0 April

More information

THE FINAL PROOF SUPPORTING THE TURNOVER FORMULA.

THE FINAL PROOF SUPPORTING THE TURNOVER FORMULA. THE FINAL PROOF SUPPORTING THE TURNOVER FORMULA. I would like to thnk Aris for his mthemticl contriutions nd his swet which hs enled deeper understnding of the turnover formul to emerge. His contriution

More information

Option exercise with temptation

Option exercise with temptation Economic Theory 2008) 34: 473 501 DOI 10.1007/s00199-006-0194-3 RESEARCH ARTICLE Jinjun Mio Option exercise with tempttion Received: 25 Jnury 2006 / Revised: 5 December 2006 / Published online: 10 Jnury

More information

Chapter 2: Relational Model. Chapter 2: Relational Model

Chapter 2: Relational Model. Chapter 2: Relational Model Chpter : Reltionl Model Dtbse System Concepts, 5 th Ed. See www.db-book.com for conditions on re-use Chpter : Reltionl Model Structure of Reltionl Dtbses Fundmentl Reltionl-Algebr-Opertions Additionl Reltionl-Algebr-Opertions

More information

Name Date. Find the LCM of the numbers using the two methods shown above.

Name Date. Find the LCM of the numbers using the two methods shown above. Lest Common Multiple Multiples tht re shred by two or more numbers re clled common multiples. The lest of the common multiples is clled the lest common multiple (LCM). There re severl different wys to

More information

Open Space Allocation and Travel Costs

Open Space Allocation and Travel Costs Open Spce Alloction nd Trvel Costs By Kent Kovcs Deprtment of Agriculturl nd Resource Economics University of Cliforni, Dvis kovcs@priml.ucdvis.edu Pper prepred for presenttion t the Americn Agriculturl

More information

Today s Outline. One More Operation. Priority Queues. New Operation: Merge. Leftist Heaps. Priority Queues. Admin: Priority Queues

Today s Outline. One More Operation. Priority Queues. New Operation: Merge. Leftist Heaps. Priority Queues. Admin: Priority Queues Tody s Outline Priority Queues CSE Dt Structures & Algorithms Ruth Anderson Spring 4// Admin: HW # due this Thursdy / t :9pm Printouts due Fridy in lecture. Priority Queues Leftist Heps Skew Heps 4// One

More information

A portfolio approach to the optimal funding of pensions

A portfolio approach to the optimal funding of pensions Economics Letters 69 (000) 01 06 www.elsevier.com/ locte/ econbse A portfolio pproch to the optiml funding of pensions Jysri Dutt, Sndeep Kpur *, J. Michel Orszg b, b Fculty of Economics University of

More information

Chapter 4. Profit and Bayesian Optimality

Chapter 4. Profit and Bayesian Optimality Chpter 4 Profit nd Byesin Optimlity In this chpter we consider the objective of profit. The objective of profit mximiztion dds significnt new chllenge over the previously considered objective of socil

More information

Burrows-Wheeler Transform and FM Index

Burrows-Wheeler Transform and FM Index Burrows-Wheeler Trnsform nd M Index Ben ngmed You re free to use these slides. If you do, plese sign the guestbook (www.lngmed-lb.org/teching-mterils), or emil me (ben.lngmed@gmil.com) nd tell me briefly

More information

Buckling of Stiffened Panels 1 overall buckling vs plate buckling PCCB Panel Collapse Combined Buckling

Buckling of Stiffened Panels 1 overall buckling vs plate buckling PCCB Panel Collapse Combined Buckling Buckling of Stiffened Pnels overll uckling vs plte uckling PCCB Pnel Collpse Comined Buckling Vrious estimtes hve een developed to determine the minimum size stiffener to insure the plte uckles while the

More information

Smart Investment Strategies

Smart Investment Strategies Smrt Investment Strtegies Risk-Rewrd Rewrd Strtegy Quntifying Greed How to mke good Portfolio? Entrnce-Exit Exit Strtegy: When to buy? When to sell? 2 Risk vs.. Rewrd Strtegy here is certin mount of risk

More information

Problem Set 2 Suggested Solutions

Problem Set 2 Suggested Solutions 4.472 Prolem Set 2 Suggested Solutions Reecc Zrutskie Question : First find the chnge in the cpitl stock, k, tht will occur when the OLG economy moves to the new stedy stte fter the government imposes

More information

Exhibit A Covered Employee Notification of Rights Materials Regarding Allied Managed Care Incorporated Allied Managed Care MPN MPN ID # 2360

Exhibit A Covered Employee Notification of Rights Materials Regarding Allied Managed Care Incorporated Allied Managed Care MPN MPN ID # 2360 Covered Notifiction of Rights Mterils Regrding Allied Mnged Cre Incorported Allied Mnged Cre MPN This pmphlet contins importnt informtion bout your medicl cre in cse of workrelted injmy or illness You

More information

Optimal firm's policy under lead time- and price-dependent demand: interest of customers rejection policy

Optimal firm's policy under lead time- and price-dependent demand: interest of customers rejection policy Optiml firm's policy under led time- nd price-dependent demnd: interest of customers rejection policy Abduh Syid Albn Université Grenoble Alpes, G-SCOP, F-38000 Grenoble, Frnce bduh-syid.lbn@grenoble-inp.org

More information

On-demand, Spot, or Both: Dynamic Resource Allocation for Executing Batch Jobs in the Cloud

On-demand, Spot, or Both: Dynamic Resource Allocation for Executing Batch Jobs in the Cloud On-demnd, Spot, or Both: Dynmic Resource Alloction for Executing Btch Jobs in the Cloud Ishi Menche Microsoft Reserch Ohd Shmir Weizmnn Institute Nvendu Jin Microsoft Reserch Abstrct Cloud computing provides

More information

Measuring Search Trees

Measuring Search Trees Mesuring Serch Trees Christin Bessiere 1, Bruno Znuttini 2, nd Cèsr Fernández 3 1 LIRMM-CNRS, Montpellier, Frnce 2 GREYC, Cen, Frnce 3 Univ. de Lleid, Lleid, Spin Astrct. The SAT nd CSP communities mke

More information

Rational Equity Bubbles

Rational Equity Bubbles ANNALS OF ECONOMICS AND FINANCE 14-2(A), 513 529 (2013) Rtionl Equity Bubbles Ge Zhou * College of Economics, Zhejing University Acdemy of Finncil Reserch, Zhejing University E-mil: flhszh@gmil.com This

More information

MIXED OLIGOPOLIES AND THE PROVISION OF DURABLE GOODS. Baranovskyi Volodymyr. MA in Economic Analysis. Kyiv School of Economics

MIXED OLIGOPOLIES AND THE PROVISION OF DURABLE GOODS. Baranovskyi Volodymyr. MA in Economic Analysis. Kyiv School of Economics MIXED OLIGOPOLIES AND THE PROVISION OF DURABLE GOODS by Brnovskyi Volodymyr A thesis submitted in prtil fulfillment of the requirements for the degree of MA in Economic Anlysis Kyiv School of Economics

More information

)''/?\Xck_

)''/?\Xck_ bcbsnc.com Deductible options: $250, $500, $1,000 or $2,500 Deductible options $500, $1,000, $2,500, $3,500 or $5,000 D or (100% coinsurnce is not vilble on the $2,500 deductible option) coinsurnce plns:

More information

checks are tax current income.

checks are tax current income. Humn Short Term Disbility Pln Wht is Disbility Insurnce? An esy explntion is; Disbility Insurnce is protection for your pycheck. Imgine if you were suddenly disbled, unble to work, due to n ccident or

More information

Menu costs, firm size and price rigidity

Menu costs, firm size and price rigidity Economics Letters 66 (2000) 59 63 www.elsevier.com/ locte/ econbse Menu costs, firm size nd price rigidity Robert A. Buckle *, John A. Crlson, b School of Economics nd Finnce, Victori University of Wellington,

More information

Math F412: Homework 4 Solutions February 20, κ I = s α κ α

Math F412: Homework 4 Solutions February 20, κ I = s α κ α All prts of this homework to be completed in Mple should be done in single worksheet. You cn submit either the worksheet by emil or printout of it with your homework. 1. Opre 1.4.1 Let α be not-necessrily

More information

production for Community & Culture Project Reference e 2 design episodes Bogotá: Building a Sustainable City and Affordable Green Housing.

production for Community & Culture Project Reference e 2 design episodes Bogotá: Building a Sustainable City and Affordable Green Housing. Community & Culture Project Reference e 2 design episodes Bogotá: Building Sustinble City nd Affordble Green Housing. 1) Red the bckground essy nd discussion questions for e 2 design episodes Bogotá: Building

More information

Effects of Entry Restriction on Free Entry General Competitive Equilibrium. Mitsuo Takase

Effects of Entry Restriction on Free Entry General Competitive Equilibrium. Mitsuo Takase CAES Working Pper Series Effects of Entry Restriction on Free Entry Generl Competitive Euilirium Mitsuo Tkse Fculty of Economics Fukuok University WP-2018-006 Center for Advnced Economic Study Fukuok University

More information

CHAPTER-IV PRE-TEST ESTIMATOR OF REGRESSION COEFFICIENTS: PERFORMANCE UNDER LINEX LOSS FUNCTION

CHAPTER-IV PRE-TEST ESTIMATOR OF REGRESSION COEFFICIENTS: PERFORMANCE UNDER LINEX LOSS FUNCTION CHAPTER-IV PRE-TEST ESTIMATOR OF REGRESSION COEFFICIENTS: PERFORMANCE UNDER LINEX LOSS FUNCTION 4.1 INTRODUCTION It hs lredy been demonstrted tht the restricted lest squres estimtor is more efficient thn

More information

arxiv: v1 [cs.lg] 23 Jan 2019

arxiv: v1 [cs.lg] 23 Jan 2019 Robust temporl difference lerning for criticl domins rxiv:1901.08021v1 [cs.lg] 23 Jn 2019 Richrd Klim University of Liverpool, UK richrd.klim@liverpool.c.uk Michel Kisers Centrum Wiskunde & Informtic,

More information

ECON 105 Homework 2 KEY Open Economy Macroeconomics Due November 29

ECON 105 Homework 2 KEY Open Economy Macroeconomics Due November 29 Instructions: ECON 105 Homework 2 KEY Open Economy Mcroeconomics Due Novemer 29 The purpose of this ssignment it to integrte the explntions found in chpter 16 ok Kennedy with the D-S model nd the Money

More information

Technical Report Global Leader Dry Bulk Derivatives

Technical Report Global Leader Dry Bulk Derivatives Soybens Mrch 17 - Weekly Soybens Mrch 17 - Dily Weekly Close US$ 1,054 ½ RSI 59 MACD Bullish The hisgrm is widening S1 US$ 1,016 ½ S2 US$ 993 R1 US$ 1,071 R2 US$ 1,096 Dily Close US$ 1,030 RSI 60 MACD

More information

Math 205 Elementary Algebra Fall 2010 Final Exam Study Guide

Math 205 Elementary Algebra Fall 2010 Final Exam Study Guide Mth 0 Elementr Algebr Fll 00 Finl Em Stud Guide The em is on Tuesd, December th from :0m :0m. You re llowed scientific clcultor nd " b " inde crd for notes. On our inde crd be sure to write n formuls ou

More information

MARKET POWER AND MISREPRESENTATION

MARKET POWER AND MISREPRESENTATION MARKET POWER AND MISREPRESENTATION MICROECONOMICS Principles nd Anlysis Frnk Cowell Note: the detil in slides mrked * cn only e seen if you run the slideshow July 2017 1 Introduction Presenttion concerns

More information

FINANCIAL ANALYSIS I. INTRODUCTION AND METHODOLOGY

FINANCIAL ANALYSIS I. INTRODUCTION AND METHODOLOGY Dhk Wter Supply Network Improvement Project (RRP BAN 47254003) FINANCIAL ANALYSIS I. INTRODUCTION AND METHODOLOGY A. Introduction 1. The Asin Development Bnk (ADB) finncil nlysis of the proposed Dhk Wter

More information

Problem Set for Chapter 3: Simple Regression Analysis ECO382 Econometrics Queens College K.Matsuda

Problem Set for Chapter 3: Simple Regression Analysis ECO382 Econometrics Queens College K.Matsuda Problem Set for Chpter 3 Simple Regression Anlysis ECO382 Econometrics Queens College K.Mtsud Excel Assignments You re required to hnd in these Excel Assignments by the due Mtsud specifies. Legibility

More information

What Makes a Better Annuity?

What Makes a Better Annuity? Wht Mkes Better Annuity? Json S. Scott, John G. Wtson, nd Wei-Yin Hu My 2009 PRC WP2009-03 Pension Reserch Council Working Pper Pension Reserch Council The Whrton School, University of Pennsylvni 3620

More information

Does Population Aging Represent a Crisis for Rich Societies?

Does Population Aging Represent a Crisis for Rich Societies? First drft Does Popultion Aging Represent Crisis for Rich Societies? by Gry Burtless THE BROOKINGS INSTITUTION Jnury 2002 This pper ws prepred for session of the nnul meetings of the Americn Economic Assocition

More information

This paper is not to be removed from the Examination Halls

This paper is not to be removed from the Examination Halls This pper is not to be remove from the Exmintion Hlls UNIVESITY OF LONON FN3092 ZA (279 0092) BSc egrees n iploms for Grutes in Economics, Mngement, Finnce n the Socil Sciences, the iploms in Economics

More information

Trigonometry - Activity 21 General Triangle Solution: Given three sides.

Trigonometry - Activity 21 General Triangle Solution: Given three sides. Nme: lss: p 43 Mths Helper Plus Resoure Set. opyright 003 rue. Vughn, Tehers hoie Softwre Trigonometry - tivity 1 Generl Tringle Solution: Given three sides. When the three side lengths '', '' nd '' of

More information

Access your online resources today at

Access your online resources today at 978--07-670- - CmbridgeMths: NSW Syllbus for the Austrlin Curriculum: Yer 0: Stte./. Access your online resources tody t www.cmbridge.edu.u/go. Log in to your existing Cmbridge GO user ccount or crete

More information

Decision Making Under Uncertainty

Decision Making Under Uncertainty CSC384: Intro to Artificil Intelligence Preferences Decision Mking Under Uncertinty Decision Trees DBN: 15.1 nd 15.5 Decision Network: 16.1,16.2,16.5,16.6 I give root plnning prolem: I wnt coffee ut coffee

More information

ACHIEVING ALARP WITH SAFETY INSTRUMENTED SYSTEMS

ACHIEVING ALARP WITH SAFETY INSTRUMENTED SYSTEMS ACHIEVING ALARP WITH SAFETY INSTRUMENTED SYSTEMS C.R. Timms, MIEE, United Kingdom, Tel: + 44 (0) 9 88668, Emil: c.timms@ifb.co.uk Keywords: ALARP, hzrds, risk, sfety, SIS. Abstrct This pper sets out methodology

More information

International Monopoly under Uncertainty

International Monopoly under Uncertainty Interntionl Monopoly under Uncertinty Henry Ary University of Grnd Astrct A domestic monopolistic firm hs the option to service foreign mrket through export or y setting up plnt in the host country under

More information

JOURNAL THE ERGODIC TM CANDLESTICK OSCILLATOR ROBERT KRAUSZ'S. Volume 1, Issue 7

JOURNAL THE ERGODIC TM CANDLESTICK OSCILLATOR ROBERT KRAUSZ'S. Volume 1, Issue 7 ROBERT KRUSZ'S JOURNL Volume 1, Issue 7 THE ERGODIC TM CNDLESTICK OSCILLTOR S ometimes we re lucky (due to our diligence) nd we find tool tht is useful nd does the jo etter thn previous tools, or nswers

More information

The Combinatorial Seller s Bid Double Auction: An Asymptotically Efficient Market Mechanism*

The Combinatorial Seller s Bid Double Auction: An Asymptotically Efficient Market Mechanism* The Combintoril Seller s Bid Double Auction: An Asymptoticlly Efficient Mret Mechnism* Rhul Jin IBM Wtson Reserch Hwthorne, NY rhul.jin@us.ibm.com Prvin Vriy EECS Deprtment University of Cliforni, Bereley

More information

Choice of strategic variables under relative profit maximization in asymmetric oligopoly

Choice of strategic variables under relative profit maximization in asymmetric oligopoly Economics nd Business Letters () 5-6 04 Choice of strtegic vriles under reltive profit mximiztion in symmetric oligopoly Atsuhiro Stoh Ysuhito Tnk * Fculty of Economics Doshish University Kyoto Jpn Received:

More information

MATH 236 ELAC MATH DEPARTMENT FALL 2017 SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.

MATH 236 ELAC MATH DEPARTMENT FALL 2017 SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. MATH 236 ELAC MATH DEPARTMENT FALL 2017 TEST 1 REVIEW SHORT ANSWER. Write the word or phrse tht best completes ech sttement or nswers the question. 1) The supply nd demnd equtions for certin product re

More information

This paper is not to be removed from the Examination Halls

This paper is not to be removed from the Examination Halls This pper is not to be remove from the Exmintion Hlls UNIVESITY OF LONON FN3092 ZB (279 0092) BSc egrees n iploms for Grutes in Economics, Mngement, Finnce n the Socil Sciences, the iploms in Economics

More information

Conditions for FlexiLink

Conditions for FlexiLink Conditions for FlexiLink Your policy 1 Wht your policy covers FlexiLink is single-premium investment-linked pln designed to increse the vlue of your investment. Through this pln, you cn invest in one or

More information

The Morgan Stanley FTSE Growth Optimiser Plan

The Morgan Stanley FTSE Growth Optimiser Plan The Morgn Stnley FTSE Growth Optimiser Pln Offering choice of two FTSE 100 linked growth plns Choose the growth nd risk profile tht meets your investment needs The Morgn Stnley FTSE 100 Growth Optimiser

More information

Behavioural Differential Equations and Coinduction for Binary Trees

Behavioural Differential Equations and Coinduction for Binary Trees Behviourl Differentil Equtions nd Coinduction for Binry Trees Alexndr Silv nd Jn Rutten,2 Centrum voor Wiskunde en Informtic (CWI) 2 Vrije Universiteit Amsterdm (VUA) {ms,jnr}@cwi.nl Abstrct. We study

More information

Central Bank forecasts and disclosure policy: Why it pays to be optimistic

Central Bank forecasts and disclosure policy: Why it pays to be optimistic Europen Journl of Politicl Economy 23 (2007) 30 50 www.elsevier.com/locte/ejpe Centrl Bnk forecsts nd disclosure policy: Why it pys to be optimistic Sylvester Eijffinger,b, Mewel F. Tesfselssie c, CentER

More information

The Morgan Stanley FTSE 100 Income Plan. Investor Pack

The Morgan Stanley FTSE 100 Income Plan. Investor Pack The Morgn Stnley FTSE 100 Income Pln Investor Pck The Morgn Stnley FTSE 100 Income Pln Introduction The current low interest rte environment mkes it very difficult for investors to find products tht offer

More information

OPEN BUDGET QUESTIONNAIRE

OPEN BUDGET QUESTIONNAIRE Interntionl Budget Prtnership OPEN BUDGET QUESTIONNAIRE SOUTH KOREA September 28, 2007 Interntionl Budget Prtnership Center on Budget nd Policy Priorities 820 First Street, NE Suite 510 Wshington, DC 20002

More information

Technical Report Global Leader Dry Bulk Derivatives. FIS Technical - Grains And Ferts. Highlights:

Technical Report Global Leader Dry Bulk Derivatives. FIS Technical - Grains And Ferts. Highlights: Technicl Report Technicl Anlyst FIS Technicl - Grins And Ferts Edwrd Hutn 44 20 7090 1120 Edwrdh@freightinvesr.com Highlights: SOY The weekly schstic is wrning slowing momentum in the mrket. USD 966 ¼

More information

Technical Report Global Leader Dry Bulk Derivatives

Technical Report Global Leader Dry Bulk Derivatives Soybens Mrch 17 - Weekly Soybens Mrch 17 - Dily Source Bloomberg Weekly Close US$ 1,026 7/8 RSI 56 MACD Bullish, the hisgrm is flt S1 US$ 1,032 ½ S2 US$ 1,001 R1 US$ 1,072 R2 US$ 1,080 Dily Close US$ 1,042

More information

Information Acquisition and Disclosure: the Case of Differentiated Goods Duopoly

Information Acquisition and Disclosure: the Case of Differentiated Goods Duopoly Informtion Acquisition nd Disclosure: the Cse of Differentited Goods Duopoly Snxi Li Jinye Yn Xundong Yin We thnk Dvid Mrtimort, Thoms Mriotti, Ptrick Rey, Wilfried Snd-Zntmn, Frnces Xu nd Yongsheng Xu

More information

Asymptotic Stability of a Rate Control System. with Communication Delays

Asymptotic Stability of a Rate Control System. with Communication Delays Asymptotic Stbility of Rte Control System with Communiction Delys Richrd J. L nd Priy Rnjn University of Mrylnd, College Prk {hyongl, priy}@eng.umd.edu 1 Abstrct We study the issue of symptotic stbility

More information

A Strategic Framework to Use Payback Period in Evaluating the Capital Budgeting in Energy and Oil and Gas Sectors in Oman

A Strategic Framework to Use Payback Period in Evaluating the Capital Budgeting in Energy and Oil and Gas Sectors in Oman Interntionl Journl of Economics nd Finncil Issues ISSN: 2146-4138 vilble t http: www.econjournls.com Interntionl Journl of Economics nd Finncil Issues, 2015, 5(2), 469-475. A Strtegic Frmework to Use Pybck

More information

1 Manipulation for binary voters

1 Manipulation for binary voters STAT 206A: Soil Choie nd Networks Fll 2010 Mnipultion nd GS Theorem Otoer 21 Leturer: Elhnn Mossel Srie: Kristen Woyh In this leture we over mnipultion y single voter: whether single voter n lie out his

More information

Grain Marketing: Using Balance Sheets

Grain Marketing: Using Balance Sheets 1 Fct Sheet 485 Grin Mrketing: Using Blnce Sheets Introduction Grin lnce sheets re estimtes of supply nd demnd. They re the key to understnding the grin mrkets. A grin frmer who understnds how to interpret

More information