How Algorithms Show That Some Jobs are Unnecessary

Reading Algorithms to Live By: The Computer Science of Human Decisions by Brian Christian, it’s easy to get immersed in the many different applications, explanations, and more that Christian provides. One such topic I’d like to talk about more is the idea of caching, and how it shows that when organizing any collection of objects, oftentimes no system at all is more efficient than a certain sorting pattern.

You’ve probably heard of caching, I believe in years past the district installed a “Clear Cache” extension that totally did nothing, but it was a cool little trash bin that said it cleared your cache! Caching is the idea that computers store pieces of information or processes that need to be frequently used. Imagine, instead of a brightness button, if you wanted to change your computer screen you had to physically go to a terminal prompt and input your commands there, like below.

That would be super unnecessary and inconvenient! Caching helps to make computers run faster, having key processes saved to improve efficiency. 

The trickiest part of this idea is, with only a limited amount of memory that your computer can hold in this “cache”, what should we keep and what should we get rid of to maximize efficiency? 

It turns out, while there are many complex solutions, like caching reactively where your storage depends entirely on what’s being used at the present moment in time, the overall most efficient strategy is a last-in-first-used strategy. Especially with a computer, information most recently accessed has the highest chance to be called again. (For more caching examples, check out: https://docs.aws.amazon.com/whitepapers/latest/database-caching-strategies-using-redis/caching-patterns.html!)

How can we visualize this? Imagine doing your math homework, let’s say your processes of completing this task are writing with a pencil, fixing mistakes with your eraser, solving problems with your calculator, and correcting mistakes with a red pen. Let’s visualize each of these objects as different processes on your computer. 

Let’s say you’re working with your pencil, solving a problem. Then making a mistake, you quickly erase it. What will you pick up next? Most likely your pencil to continue the problem. Lets say, after solving that problem, the next one requires a calculator. After picking up the calculator and solving the problem, you write down your answer with your pencil. Realizing you forgot to add a value, you quickly adjust your calculations and fix your work. 

Here, we can see that you kept picking up the school supplies that you used last – this idea of the most recently used tool being the one most likely to be used again.   

So how does this apply to our lives? 

Imagine you are a librarian, sorting books. I love this picture below with the annotations and circling marks – it perfectly gets at my claim. How should you sort books? Should the big Shakespeare book go together with the Romeo and Juliet books, even though one is a biography and the other is a work of fiction? 

This problem is what librarians face in their day-to-day operations: how should they sort these books to be efficient for readers to search for? 

Yet applying Caching concepts, and the idea of last used as the most likely accessed process, it makes the most sense for librarians to never reshelve a book. Since we know people will want to use the most recently used process, in this case, a certain book, why should librarians ever sort these books back into the shelves where it’s harder for patrons to find? Not only does this take time out of their day, but it also wouldn’t be efficient for readers. 

Which is super strange! It seems obvious that we should sort items, and order the chaos. But here, the most efficient strategy for librarians is to have a “recently checked out” book display in the lobby of the library, and only reshelve the books that have been on this display for a certain amount of time, let’s say a week. 

This realization leads us to question if reshelving books is even needed, and if not why so many spend their time doing something inefficient for both the librarian and reader. 

These ideas are super interesting to explore: it shows how some jobs in our society, or even entire processes in our society, could be unnecessary and even inefficient for society. 

Overall, I hope this blog helped show how we can use algorithms to not only better our lives, but learn a thing or two from the computers that power our society. 

2 thoughts on “How Algorithms Show That Some Jobs are Unnecessary

  1. Hey Max!
    I really enjoyed reading your blog for this week! It was such a refreshing topic to learn: I have cleared my cache nearly a hundred times on my phone/Chromebook, but I’ve never bothered to look into what it actually means. It’s almost comical, yet I’m drawn to doing it every once in a while “just because.” Not only did your blog help me learn what caching even is, but it taught me more about algorithms! My dad has tried to talk to me about algorithms an exhausting number of times, and if I’m being honest, I usually tune the poor guy out. Algorithms (and similar topics) aren’t my strongest suit, so I’ve never really taken the time to look into them or listen to what dad has to say. However, I’ve realized that by breaking an idea down little by little, and throwing in a couple of examples here and there, algorithms aren’t too scary after all! The homework example you used to explain the process of caching reactively is brilliantly clever, and I loved exploring the link you provided about caching patterns, including proactive and reactive approaches.

    I was fascinated by your idea of only reshelving books that have been on display for a certain amount of time. Yet again, you provide another great example of how algorithms can apply to our everyday life. An interesting example (it isn’t necessarily related to caching, however) my dad once pointed out to me is that tying your shoe is basically an algorithm. There is a limited number of steps that result in a helpful ribbon. Anyway, I feel like whenever I go to the library, I look around and wonder how many times a librarian has reshelved a certain book, just because each one has its own, designated spot on an assorted shelf. It’s beyond interesting to think about how this could be (ironically) inefficient by using algorithms. Overall, great job! I loved reading your blog, and I plan on using this new information to surprise my dad!

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *