Skip to main content

Programmatic Law

Law is one of the most inefficient processes of modern society. Still it's effective, all things considered. The inefficiency lies in the fact that figuring out what is legal or not is a complicated process that involves lawyers. Originally law was supposed to be simple enough to be interpreted by jurors but now you almost have to be a jurist to understand the law. This inefficiency is even used as a bargaining chip in many cases with the threat of "tying this up in court for years."

How is that even possible? Law is not supposed to be obtuse, yet it gets that way.

The law's complexity has driven the need for a highly sub-specialized class of professionals, that rather than be advocates or expert advisors are more like translators to the arcane practices and language of law.

Have you ever read a contract and wondered what it meant? Then had it explained to you and you couldn't figure out why they didn't just said that, in plain language rather than the page of small print?

Most laws don't really require this level of obfuscation and in fact might work better if like a virtual game world they were coded in programmatic language rather than coded in lawyer-speak.

For example many laws have time deadlines for the filing of paperwork, and many times this deadlines are not only artificial, they are hard to find out with out some extensive knowledge of law. Local, State and Federal layers add to a complexity that only paid professional can dedicate the time to learn. I was watching a court-tv program and was blown away when a former tenant successfully sued her previous landlord because even though no one disputes that the tenant wrecked the apartment the landlord failed to give a written notice of the damages, so was ordered to return the deposit. I thought, how was he to know? There is no website you can go to and check the procedure and only a trained lawyer can read and understand law.

Interestingly, the parallels between law and programming are huge. But programming has a huge advantage: it's interactive. You can simulate circumstances and look at the results and learn from that.

However, the biggest advantage of doing law in programmatic way is that you can model it, experiment with it and do test cases in a far quicker way than you would otherwise. That way you could find out what law best achieves the intent of the law, rather than having to pass it to find out.

Seeing law this way requires a re-framing of what law is. Laws are the rules of a game, a game that society plays but not anything more than that. They are how things work only because we agree on them. Laws serve society or at least they are supposed to, society is not supposed to serve the law. By re-framing the law you can then tinker with it more effectively, in type of sand-box before having to pass it.

As people become more and more familiar with programing languages, many of the conditions and caveats of the law might be clearer when expresses in programming language.

Right now programs like Turbo Tax do that to an extent, but there is no reason why this language cant be added to the way laws are made.

Let's take the Estate Tax for example. In Japan Estate Taxes are really high, if you wanted to see how a high Estate Tax would affect people,  you could code it rather simply.

if your_assets > 1_000_000
 pay (your_assets - 1_000_000) / 2 

So here if your assets are over $1 million you pay %50 tax on the amount over it. Simple enough, the pseudo-code is actually cleaner, as it's clear the first $1 mil is tax excluded.

Comments

Popular posts from this blog

What Medieval Economics can teach us about tariffs.

As a teen, I used to play Dungeons and Dragons (D&D) with my friends. This started an interest in the medieval period that led to me taking a medieval history class in college just to understand the period more. Over the years I've also read great books like " Dungeon, Fire and Sword " about the crusades (I recommend the book) and yet with all that knowledge it wasn't until recently that it occurred to me I had a completely wrong understanding of economics in the Medieval Period. "Viking helmets, sword and footwear" by eltpics is licensed under CC BY-NC 2.0 In my D&D games, players who are adventures battling monsters and creatures would need equipment and on the trips to town, they'd get resupplied with their adventuring necessities. I'd run these moments referencing my imagination of what it must have been and fantasy books I'd read. There be an inn with a raucous bar, a gruffly black-smith, if a city also a weapon and armor sm...

Great iPhone Apps

As a companion to my blog on Windows utilities, here are two paid apps on the iPhone that I consider so fantastic that are must buys in my opinion. -Easy Calendar ( $1.99 ) The iPhone Calendar is one of its weakest features in my opinion. I miss the clear Black Berry calendar on my pearl whenever I had to use it. This app makes the calendar not only easy to use but way more useful, I see my week laid out for me with an easy ability to push things to other days (rather than having to re-enter the appointment). This app has completely re-made the way I organize things. I'm way more organized and rarely miss appointment now. This app is a steal at it's prize. No other app adds such simple functionality to the iPhone like this one does. It's like my secret organizer helper. -Sleep Cycle ( $.99 ) I tried out this app because it was recommended on Tim Ferriss's books . I had seen this app before when it came out and thought it was intriguing, but it was way expensive. N...

Best Tech Books

Best Tech Books for Programming Language Learning I'm a bit of a polyglot no only in human languages (English, Spanish, Japanese) but also with programming languages. I found that the best way to get a deep understanding of the programming field, I needed to be broad. I got introduced to Bruce Tate's 7 languages in 7 weeks series right when I was starting to learn Ruby and found the cross-language trends to be very useful in knowing what to learn for the future.  So here is a list of Programming Books that I found good for learning a language. These are the must have books in my opinion to "get" or "grok" the language. Most of these books I have not finished but they're so good I can recommend them for other language learners and polyglots. All these books should accelerate your learning dramatically.  Poignant Guide to Ruby Ruby: POODR and _why's Poignant Guide to Ruby .  Okay, so _why's Poignant Guide to Ruby is the reason I fell in love with ...