Stackelberg Added to Atlas of Economics Models
May 29th, 2008
I’ve added a reasonably detailed treatment of Stackelberg Competition to the Atlas (of Economic Models).
Caramel
May 25th, 2008
6.5/10. Engaging first-feature from Lebanese director and actress Nadine Lebaki.
The Soul of a New Machine by Tracy Kidder
May 20th, 2008
5.5/10. Disappointing though perhaps because of the high expectations engendered by the book’s reputation. To my mind, the book has not dated well and the general insights regarding working practices set out in the afterword seem debatable (the Machine referred to in the title is not the computer but the organizationthat built it).
When Genius Failed: The Rise and Fall of Long-Term Capital Management by Roger Lowenstein
May 20th, 2008
6/10. Interesting though, as usual with these things, the book is long on personality, anecdote and rumour, and a bit too short on factual details of what exactly happened (roughly LTCM made ever more leveraged bets on ever less liquid and well understood products and got mashed up when a crisis came along and everyone ran for the door).
Interesting side points that are alleged (but not confirmed) include Goldman Sachs using their position as potential buyer/rescuer to gain privileged access to LTCM’s position and then front-running them (i.e. selling those positions out from under LTCM thereby helping Goldman and harming LTCM).
2008 International Industrial Organization Conference (IIOC)
May 20th, 2008
After attending the IIOC conference last year I was back this weekend at the 2008 IIOC event which took place at Marymount University in Virginia. I presented the latest version of two of my papers: The Control of Porting in Two-Sided Markets and Forever Minus a Day? Theory and Empirics of Optimal Copyright Term.
I also provided discussant comments on Christopher Ellis’s and Wesley Wilson’s paper entitled Cartels, Price-Fixing, and Corporate Leniency Policy:What Doesn’t Kill Us Makes Us Stronger. In addition I include below some very partial notes on some of the sessions I attended — though activity in this regard was rather limited by the fact that, though there were more papers overall than last year (388 in total), sessions were organized into more breadth and less length.
Transaction Costs and Trolls: the Behaviour of Individual Inventors, Small Firms and Entrepreneurs in Patent Litigation (Gwendolyn Ball and Jay Kesan)
- Explore settlements in relation to patents. Questions:
- How often do settlements happen relative to litigation
- Are small firm and entrepreneurs at a major disadvantage in defending their patents
- Or do patent
trolls' use the threaof litigation toextort’ payments- NTP vs. RIM ($612M)
- Saffron vs. Boston Scientific ($412M to individual doctor who had an infringed heart stent patent)
- Does nature of defendant/plaintiff (L/M/S) affect likelihood of settlement
- Existing databases not so great
- Only list trial outcomes not pre-trial outcomes
- Often only list primary plaintiffs
- Fix this and link patent litigation to companies
- Results
- Claimed usually that 95% cases settle
- In fact 8% are resolved at pre-trial (still expensive)
- 4% settled at trial
- so ~ 88% settle
- Troll stuff:
- 97 licensing firms as plaintiffs (none as defendants). These may be classic trolls but they are a small part of overall litigation.
- Evidence shows that entrepreneurs and small inventors are very active (so do not seem particularly disadvantaged) and often sue each other rather than larger firms
- Crudely: small inventors more likely to pursue a case to the end than large litigators
- Claimed usually that 95% cases settle
- Discussant comments:
- Bessen and Meurer find $28M hit on firms facing litigation
- Issues of correlated errors across cases
- My comments:
- probably need to disaggregate across areas — after all no-one has suggested ‘trolling’ is an issue in traditional pharma
- (for me) it would be useful to have an idea how many cases ’settle’ at the ‘letter stage’, that is, before anything even turns up in the court system. After all you only get to the courts (even with preliminaries) if you cannot sort out a license.
Prior Art - To Search or Not to Search (Vidya Atal)
- Alcacer + Gittelman 2006 showed 40% had prior art added by USPTO examiner
- 2/3 citations on an average patent added by USPTO
- Langinier + Marcoul (2003), Lampe (2007) — incentive to disclose prior art
- Issue of bad (non-novel) patents may be because people have poor incentives to search
- Mainly related this to fact that even a bad patent (if it gets past examination) has a +ve payoff
Some Notes on Converting From Subversion to Mercurial (hg)
May 17th, 2008
Distributed versioning systems (VCMs) have now matured to the point that I’ve been planning to switch from subversion for quite a while — at least for own personal repositories where there are no coordination issues. Having chosen mercurial (hg) as my DVCM of choice the next step was to actually convert. While there is quite a bit of documentation on this topic available online I didn’t always find these had the necessary info. Combined with my experience of several ’snags’ along the way I thought it worth documenting my experience in case it proves useful to others.
I’d waited until hg 0.9.5 was available on my distro precisely because I wanted to use the hg convert functionality (alteratives such as tailor looked to have difficulties and though it turned out I could have used hgsvn without problem my original impression of it had been it was oriented for integration of hg and svn rather than straight conversion).
Before I document the steps it is important to get clear one v. important thing about how hg works:
There is no distinction between a working copy and a repository.
In particular, each repository is a working copy and vice versa. The actual repo is stored inside the working copy at its root in a .hg directory. When you ‘checkout’ (svn terminology) you do so simply by ‘cloning’ an existing repository (or if just want a limited set of changes — e.g. those since you lasted ‘updated’ (svn terminology) you can do a ‘pull’). In fact you could even just make a plain copy that .hg directory and send it to someone — though obviously this might not work so well if you are moving between 2 OSs with different filesystems.
Anyway, the main point to take from this is that the result of an hg convert will simply be a new directory with all the files (the working copy) plus a .hg directory in that directory (the repo).
To convert all you do is::
$ hg convert <svn-repo-or-co> <some-new-directory>
If you get weird errors while trying to convert (e.g. “Unknown Repository type”) then turn on debug to get more info:
hg -v --debug convert SOURCE DEST
(For example, in my case it turned out I hadn’t got the python svn bindings installed …)
The devil however is in the detail:
- svn-repo-or-co can be the uri of a subversion repo or the path of a svn checkout. Where a checkout hg convert will just work out the source repo and pull from there
- Note however hg convert will not move across working copy files themselves. The obvious solution to this is to do the convert and then just move the .hg file across into your svn checkout and delete all the .svn directories (or vice-versa)
- some-new-directory: this is where the new hg repo/working copy with end up.
- After doing hg convert rather surprisingly all of the files in the new hg repository will be listed as ‘?’ (not tracked) when you do a
hg status. To solve this just do ahg update - To speed up conversions it is often worth getting a local copy of the subversion repo (to save pulling lots of stuff over the network connection). To do this either use svnsync or just dump the remote repo and load into a local one (if converting from a working copy you’ll then just need to do a
svn switch --relocate - My repository did not have a branches/tags/trunk layout (instead it has multiples subprojects …). This led to weird errors involving files and directories at the root of the repository which looked like: ‘hg convert abort: path contains illegal component’. I solved this by using the
--filemapoption tohg convertand putting explicit renames of the form:/root-path-1 root-path-1in that file. What do you for all the other working copies once you have converted the repo/your working copy? This is now simple:
- Clone your hg repo to each of the machines with a working copy. (For this purpose you will probably want to make your original hg repo available over the Internet using either ssh or http protocols (for details see mercurial docs).
- Delete all wc files in this new hg repo
- Copy svn working files (just from trunk …) into this hg repo (alternatively do this the other way round and copy the relevant hg stuff .hg, .hgtags etc into the svn working copy …)
Remove .svn directories:
$ find . -name '\.svn' -exec rm -Rf {} \;- Update inside the new hg repo:
$ hg up
Today I’ll be presenting my paper Forever Minus a Day? Theory and Empirics of Optimal Copyright Term at Stanford in the Social Science and Technology Seminar Series (also here).
This new paper is a heavily revised version of the copyright-term specific portions of my original ‘Forever Minus a Day’ paper (see post from last summer). The rest of the original paper can now be found in Optimal Copyright over Time: Technological Change and the Stock of Works which was published in the December issue of the Review of Economic Research on Copyright Issues (RERCI).
Update post-talk (2008-05-16): the slides are now online at:
http://rufuspollock.org/economics/papers/optimal_copyright_term_talk_stanford.pdf
What’s Wrong with Modern Macroeconomics
May 6th, 2008
This January I met Alan Kirman at the Robinson Workshop on Rationality and Emotions. Over lunch we had a brief discussion about the difficulties of modern macroeconomics. I was therefore intrigued to see a new paper of his (co-authored with Peter Howitt, David Colander, Axel Leijonhufvud and Perry Mehrling) entitled Beyond DSGE Models: Towards an Empirically-Based Macroeconomics which was presented in January at the AEA conference (and looks like it will be appearing in the AER ‘Papers and Proceedings’).
The paper has much to say about the current state of macro, in particular the serious problems with DSGE (dynamic stochastic general equilibrium models) and where we should go from here. As the abstract puts it:
This paper argues that macro models should be as simple as possible, but not more so. Existing models are “more so” by far. It is time for the science of macro to step beyond representative agent, DSGE models and focus more on alternative heterogeneous agent macro models that take agent interaction, complexity, coordination problems and endogenous learning seriously. It further argues that as analytic work on these scientific models continues, policy-relevant models should be more empirically based; policy researchers should not approach the data with theoretical blinders on; instead, they should follow an engineering approach to policy analysis and let the data guide their choice of the relevant theory to apply.
It is worth quoting at some length from the paper in order to bring out the full ramifications of the story the authors tell:
Keynesianism Goes Wrong
With the development of macro econometric models in the 1950s, many of the Keynesian models were presented as having formal underpinnings of microeconomic theory and thus as providing a formal model of the macro economy. Specifically, IS/LM type models were too often presented as being “scientific” in this sense, rather than as the ad hoc engineering models that they were. Selective micro foundations were integrated into sectors of the models which give them the illusory appearance of being based on the axiomatic approach of General Equilibrium theory. This led to the economics of Keynes becoming separated from Keynesian economics.
The Reaction and a New Dawn (Rational Expectations and Neoclassical GE Models)
The exaggerated claims for the macro models of the 1960s led to a justifiable reaction by macroeconomists wanting to “do the science of macro right”, which meant bringing it up to the standards of rigor imposed by the General Equilibrium tradition. Thus, in the 1970s the formal modeling of macro in this spirit began, including work on the micro foundations of macroeconomics, construction of an explicit New Classical macroeconomic model, and the rational expectations approach. All of this work rightfully challenged the rigor of the previous work. The aim was to build a general equilibrium model of the macro economy based on explicit and fully formulated micro foundations.
But ‘Technical’ Difficulties Intervene
Given the difficulties inherent in such an approach, researchers started with a simple analytically tractable macro model which they hoped would be a stepping stone toward a more sensible macro model grounded in microfoundations. The problem is that the simple model was not susceptible to generalization, so the profession languished on the first step; and rational expectations representative agent models mysteriously became the only allowable modeling method. Moreover, such models were directly applied to policy even though they had little or no relevance. … [emphasis added]
But There Was a Reason For This: Other Stuff is Hard
The reason researchers clung to the rational expectations representative agent models for so long is not that they did not recognize their problems, but because of the analytical difficulties involved in moving beyond these models. Dropping the standard assumptions about agent rationality would complicate the already complicated models and abandoning the ad hoc representative agent assumption would leave them face to face with the difficulties raised by Sonnenschein, Mantel and Debreu. While the standard DSGE representative models may look daunting, it is the mathematical sophistication of the analysis and not the models themselves which are difficult. Conceptually, their technical difficulty pales in comparison to models with more realistic specifications: heterogeneous agents, statistical dynamics, multiple equilibria (or no equilibria), and endogenous learning. Yet, it is precisely such models that are needed if we are to start to capture the relevant intricacies of the macro economy.
Building more realistic models along these lines involves enormous work with little immediate payoff; one must either move beyond the extremely restrictive class of economic models to far more complicated analytic macro models, or one must replace the analytic modeling approach with virtual modeling. Happily, both changes are occurring; researchers are beginning to move on to models that attempt to deal with heterogeneous interacting agents, potential emergent macro properties, and behaviorally more varied and more realistic opportunistic agents. The papers in this session describe some of these new approaches. [emphasis added]
Some Closing Comments of My Own
So there you go: plenty of tough challenges and a big dose of humility. To some extent here it seems thing run on 30-40 years cycles: Keynesianism from 1945-1975, Rational Expectations DSGE from 1975-2005 and now we’re into the era of complexity and ‘loose’ tools with emphasis on empirics and heuristics rather than formal models. Whether this new approach will deliver more than the old is yet to be seen. After all, one reason that there are so many physicists getting interested in Economics and Finance is that the going is so hard in, e.g., condensed matter physics (superconductivity anyone …). If the economy really is so complex will we ever do any better at the macro scale than we do for the weather and if so will it not rely on some conceptual breakthrough rather than just doing using more hard-core dynamical systems theory and running more agent-based simulations?
That said, as the authors argue, the ’simple’ route isn’t working and the hardness of the path is no reason not to attempt it — an argument in many ways directly inverse to the traditional ‘drunkard-and-the-lamp’ approach in which we restrict our models, often beyond the point in which they remain relevant, in order to maintain analytical tractability. Thus, though cautious regarding what more ‘complexity-oriented’ methods can deliver, I am in wholehearted agreement with the authors that they justify much greater exploration.
Death in Hamburg: Society and Politics in the Cholera Years, 1830-1910 by Richard Evans
May 1st, 2008
6/10. Death in Hamburg: Society and Politics in the Cholera Years, 1830-1910 by Richard Evans
This book promises much but ultimately rather disappoints, largely because of its tendency to lose focus, sprawling into this of that side-avenue. Partly this must be due to a lack of clarity as to what the book is about — an impression strongly reinforced by the book’s afterword which does much to illuminate the intentions and the author.
Is this a narrative history? An analytic investigation of the of public health provision, focusing especially on the 1892 epidemic? A wide-ranging overview of Hamburg society and the mentality of its dominant classes, a marxist-influenced study of class tension and conflict or …? The author does not seem to be sure. The result is rather a mish-mash.
At some points we seem to be investigating the political and social reasons for Hamburg’s poor public health outcomes, in particular the constant fighting between the different ‘fractions of capital’ (in particular the merchant/lawyer senators and the property-owners) over the provision of public goods, at others having a detailed description of working class living conditions, and at another a history of medical approaches to cholera and other diseases in the 19th century, and at another describing in detail how the ‘dominant’ classes used charitable support both in general, and after the 1892 epidemic, to exercise social and moral ‘control’.
Of course, it is possible these different approaches and angles could have been woven together to produce a single rich and compelling whole. But this is not so. To take the main focus of the book — which I take to be the Cholera epidemic of 1892 together with its causes and outcomes. By the time I had finished the more than 700 pages I was still unsure as to what, in Professor Evan’s view, were the main reasons for Hamburg’s terrible performance in comparison with other German (or European) cities. To pick just a few of the possible ones:
- The failure to develop sand-filtration for the public water supply. Was this in turn due to:
- The form of the Citizens’ Assembly, in particular the ability of the property owners to block improvements that might result in reductions in their profits.
- Early investment in a new water system which then made it relatively more costly to upgrade later (Hamburg was one of the first cities in Germany to develop an external resevoir).
- Ideological opposition (see next items)
- The ideological commitment of Hamburg’s ruling groups to ‘Trade’ and ‘Laissez Faire’
- Reinforced, perhaps, by direct self-interest in the case of ship-owners and others for whom quarantine meant serious disturbance to their work or enterprise
- The inefficient governance structures (in particular the operation and make-up of the Senate and Burgomaster)
- Hamburg’s governance compared particularly poorly with the more efficient, though also more, authoritarian action of the Imperial government (particularly that of the Imperial Health Office and Koch).
- Continuing support in medical circles (and in administrative positions) for ‘miasmatist’ rather than ‘contagionist’ theories of disease (especially in relation to Cholera)
- The inadequate living conditions of the poor especially in the ‘Alley Quarters’.
- Incorrect medical treatment either due to lack of medical knowledge or incompetence.
- The (in)ability of different socio-economic groups to follow the medical instructions provided — whether because of wealth (e.g. ‘rich’: able to have their servant boil all their water, ‘poor’: unable to resist the fruit which is suddenly cheaply available because normally denied it), literacy (can one read the instructions distributed), respect for ‘authority’, etc.
One would not expect to have a single explanation put forward but it would be useful to have some indication of which of these items were the more important, particularly where different reasons are substitutes not complements. For example, at several points Evans appears to indicate that the water-supply was the single biggest determinant of death by far (he cites a particularly illuminating comparison of a set of apartments that drew its water from two different sources). But if this is so then almost all of the focus should be on the water-supply question and why this public good was not present in Hamburg when it was elsewhere. No doubt, in answering this, one will be lead onto many of the other items as secondary causes but it an important step will have been made in stratifying, and thereby clarifying, the analysis. Furthermore, from this perspective an explicit comparative analysis with other localities becomes essential. While Evans does perform this to some extent, it is largely in terms of the behaviour of the localities in 1892 (e.g. re. imposition of quarantine) rather than the more important investigation of why those localities had sand filtration while Hamburg did not — in particular why had they found the political will to provide this important public good while Hamburg had not? In particular, why were the property-owners in Bremen, Berlin and elsewhere not able to block these same kinds of public infrastructure projects?
Once lead down this route the reader must be increasingly concerned about the weight, and attention, Evans focuses upon socio-ideological explanations (made particularly noticeable by the frequent intrusion of Marxist historiographical language and approach — an influence made explicit in the afterword). As Evans acknowledges in respect of most other disease outcomes Hamburg did little worse than elsewhere in Germany. If this is so how much does the 1892 epidemic really tell us about the society and politics of Hamburg (and vice-versa)? Perhaps if Hamburg had not invested early in its water supply, it would have had an ‘out-of-date’ one by 1892? Perhaps if Veresman had been Burgomaster more rapid and effective steps would have been taken early on that would have dramatically reduced the impact? Perhaps if Hamburg had been more authoritarian (rather than more democratic) the Senate would have been able to improve the water-supply earlier?
This brings me on to my final comment. The contemporary relevance of the book is emphasized in several places, for example on the back-jacket text and in several of the blurbs — Gordon Craig’s NYRB review extract quoted on the cover reads “… about the contemporary relevance of this book there can be no question”. Of course, we should allow for the fact that this was published in 1987 when the AIDS epidemic was receiving very widespread attention. But one does need to ask exactly what one does learn from this book regarding public health? That we should invest in public goods projects? That it is good for medical science to be accurate and correct? That one should respond rapidly to an outbreak of a contagious disease?
Surely the answer to all of these is yes. The devil, of course, is in the detail. how do we trade off the benefits of rapid and sharp response, which is likely to involve sharply restricting movement of persons and goods, against the costs of such restrictions both socially and commercially? What institutional structures will result in adequate investment in public goods and rapid response to public concerns? Are there tensions between responsiveness to concerns (e.g. via full representative government!) and effectiveness in action (which might necessitate a single executive office with significant power and autonomy)? Finally, if the answers to these questions are reasonably obvious (e.g. its Democracy stupid!) then what prevents a polity, whether today or in the 19th century, from acting in the correct way? (Answer: entrenched powers and vested interests — but how did these come into being and how are they overcome?).
The test then of Evans’ book is whether it supplies us with interesting answers to these, more nuanced, questions. In this regard the book, I feel, comes up short. Without a comparative analysis at the social, and more importantly, political level in other German (or European) cities how can we know whether Hamburg’s terrible experience was the result of a common generalizable pattern or mere historical accident?
In sum this an interesting book albeit a little lengthy and heavy-going in places. Confused as to its structure and purpose it largely fails to deliver on its promise to answer the main question posed on its jacket: “Why were nearly 10000 people killed in six weeks in Hamburg while most of Europe was left almost unscathed?” As such it is also limited in the light it can throw on public health problems today. Nevertheless the reader will have been left with a wide-ranging coverage of a whole variety of 19th century topics, most significantly the two items explicitly mentioned in the title: Hamburg and Cholera.
Notes on Theories of Contextual Judgement
April 30th, 2008
Over the last couple of months for the purpose of my research on happiness/subjective-well-being I’ve been putting together some notes on theories of contextual judgement. The first part of these is now in a form suitable for public consumption and I’ve posted them at:
http://www.rufuspollock.org/economics/notes/theories-of-contextual-judgement/
