CALCULATION ENGINES BEYOND EXCEL: PART 0
Calculation engines for insurance policies come up a lot in the life and annuity actuarial space between valuation models, pricing models, and single cell testing tools. Sometimes these engines exist in vendor-supported software and sometimes they exist in spreadsheets. In my experience, the spreadsheet tools are great. They are accessible, easy to hand off to someone else like new students, auditors, and even your boss. For many reasons they are a ubiquitous tool in our industry but like everything, they have their limits and often run into scalability problems: complex nested formulas pointing every which way, slow to refresh, and even having multiple versions for different products creating a maintenance nightmare.
What if we are hitting those limits and wanted to use another tool to support the business? Could we build something that would address some of the common scalability problems that exist with spreadsheets to better enable our teams? Absolutely.
WHERE DO WE START?
I am going to walk through one approach using Python. Why Python? Why not R, Julia, C++, Rust, or some other language? You could choose any language you want really, and the general idea would hold the same even if some of the finer details are different. I will use Python in this demonstration for three reasons:
The syntax of Python is very user-friendly and concise so we can focus on concepts
Python is easy to install and start working with
I know it well enough to not have to Google everything
This does not mean Python is the best language for the job. The rest of this will make the assumption you are following along in Python as well.
WHAT IS THE PLAN?
We’ll build a rudimentary universal life (UL) illustration tool and we'll tackle things incrementally starting with basic Python installation and environment setup, a simple UL illustration example to frame our design, and then incremental improvements to expand functionality and get to a reasonable working minimum-viable product (MVP).
We will minimize our third-party dependencies and tackle the issue with native Python functionality while leveraging Git for version control. We will intentionally avoid packages like pandas and Polars which offer rich DataFrame functionality not because there is anything wrong with them, but to see what we can build without these dependencies. If you have no idea what I am talking about, don't worry.
I will be keeping code in a public repository here and tagging points that correspond with each part or chapter of this demonstration. For Part 0, see the v0.0 tag.
HOW DO WE GET STARTED?
INSTALL PYTHON
If you do not have Python installed, then you should go do that now -- you can find an installer from the Python official website. To make sure the installation is functional, open a terminal window and type python3 or simply python if the former does not work. You should expect to see something like this for output:
C:\...> python
Python 3.12.3 (tags/v3.12.3:f6650f9, Apr 9 2024, 14:05:25) [MSC v.1938 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
This enables the Python REPL (Read-Evaluate-Print-Loop) which is an interactive shell for executing Python line by line. To exit the interpreter type exit() and press Enter.
C:\...> python
Python 3.12.3 (tags/v3.12.3:f6650f9, Apr 9 2024, 14:05:25) [MSC v.1938 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
C:\...>
You just installed Python and confirmed you can use it. Congrats! If you need to learn some Python basics before continuing there is a multitude of resources available both free and paid. You could try the Python Tutorial or the Beginner’s Guide on the official Python website, RealPython, W3Schools, DataCamp, YouTube, or Udemy. You could even try some physical materials like Python Crash Course by Eric Matthes (I have a 2nd edition but a 3rd edition came out in 2023), Learn Python 3 the Hard Way by Zed Shaw, or any other highly rated introductory resource. I simply recommend choosing the format that works best for you.
INSTALL AN IDE OR CODE EDITOR
I use VS Code which should not be confused with Visual Studio. There are plenty of alternatives so if you have a favorite IDE or code editor feel free to use that. I will assume you use VS Code for this.
If you do use VS Code, I highly recommend installing the Python extension managed by Microsoft at a minimum. It provides things like intellisense and debugging capabilities. VS Code should prompt you for this once you start writing Python code.
The remaining items are largely optional (creating a virtual environment, using Git, and using an online repository solution like GitHub) and if you would like to skip these feel free to move on to the Part 1 article
CREATE YOUR LOCAL VIRTUAL ENVIRONMENT (OPTIONAL)
This is really a two-parter. First, we need to decide where our project is going to live locally. Then we will create a virtual environment which will help isolate the requirements for our Python code.
Create a folder wherever you want to save your code locally. I'm going to call this folder illustrator for ease. Open this folder in your IDE, open up a terminal window in the IDE, and make sure you can launch the Python REPL (see the Install Python section above). Exit the Python REPL and after ensuring you are in the illustrator directory we created type on the command line python -m venv venv or python3 -m venv venv. I am using PowerShell in the below example which is why there is a PS at the start of the line.
PS C:\...\illustrator> python -m venv venv
You should notice a new subdirectory get created called labeled venv. How did this happen? We told Python to run the venv package with python -m venv and that will create a virtual environment named what follows, namely venv in our example. Had you typed python -m venv myenv you would see a subdirectory created with label myenv. I understand if this is a little confusing at first. This is important for dependency isolation and a good habit to be in, however since we will not be relying on external dependencies this might be overkill.
INSTALL GIT (OPTIONAL)
Next, if you do not already have it installed you should install Git. According to the official Git website, Git is "a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency". We will leverage Git for version control in this project.
From a terminal within the illustrator directory we created type git init. You should receive a message than an empty Git repository was initialized like this:
PS C:\...\illustrator> git init
Initialized empty Git repository in C:/.../illustrator/.git/
PS C:\...\illustrator>
Within the illustrator directory create a file called .gitignore and within it enter venv/*. A .gitignore file is how we tell Git not to track certain files or directories and we are telling Git to ignore the venv subdirectory and everything within it.
Next, create a file README.md. You can leave this one blank for now.
We will stage these changes in preparation of our first commit and then make that commit.
PS C:\...\illustrator> git add .
PS C:\...\illustrator> git commit -m "first commit"
[main (root-commit) 444f432] first commit
2 files changed, 1 insertion(+)
create mode 100644 .gitignore
create mode 100644 README.md
PS C:\...\illustrator>
Congratulations! You made your first commit to your codebase.
CREATE YOUR ONLINE REPOSITORY (OPTIONAL)
Assuming you installed Git, we should actually create an online repository where we can save our work. This way the work can be accessed by you or others based on the relevant permissions. For this series we will assume you are using GitHub but there are other options like GitLab and BitBucket. If you do not have an account, I recommend go creating one now.
Create a new repository in your account. We are going to create a private repository called illustrator, we will not include a README.md nor a .gitignore since we created these locally. We also will forego a license right now.
Now, we are going to execute a couple commands so we can connect our local code to the online repository. First, we add the a remote which we will label origin and provide the relevant path to the git repository. Note that the line should end with .git. Then we will push our local code to the online repository. If all goes well, you should get no error messages and see something similar to the below.
C:\...\illustrator>git remote add "origin" https://github.com/[username]/illustrator.git
C:\...\illustrator>git push -u origin main
Enumerating objects: 4, done.
Counting objects: 100% (4/4), done.
Delta compression using up to 20 threads
Compressing objects: 100% (2/2), done.
Writing objects: 100% (4/4), 284 bytes | 284.00 KiB/s, done.
Total 4 (delta 0), reused 0 (delta 0), pack-reused 0
To https://github.com/[username]/illustrator.git
* [new branch] main -> main
branch 'main' set up to track 'origin/main'.
C:\...\illustrator>
Now, with everything all set up we can actually get started on what we set out to do. Proceed to the Part 1 article when you are ready!
If you are stuck on anything it may be useful to refer to the v0.0 tag in this repository.
Have questions or feedback? Reach out to let us know!
updated January 21, 2025 to include links to public repository