Mathematica details of the cooking with mathematics post
Edit: If you want to see the full code, I include everything in this post in the Mathematica file here.
I promised previously that we would go into depth into the graph theory and food calculations, so today we will do just that. This will be Mathematica heavy, so really this is only aimed at those who have played around with the Mathematica programming language.
I’ve been using this language now for over a decade, and while it is not the fastest language on the market for doing numerics-heavy calculations, it is an incredibly versatile language, and for getting code written fast, it’s hard to beat!
I tend to code in what is called a functional programming style (ideal for Mathematica), which doesn’t use loops as you would normally find in a procedural language. Perhaps the most oft used coding syntax you will see below is of the form:
somefunction[#]&/@{el1,el2,el3,el4…}
which takes the elements of a list and passes them one by one into a function.…