From Novice to AI with Wolfram Language

I have been publishing a series of Wolfram language lectures for some time now on this platform, I think we have about 6 lessons so far. I had written a full Wolfram Notebook for a course on Wolfram language programming and Artificial Intelligence I first taught at Kaduna State University Nigeria and decided to share them here.

The course is fast paced and takes you from Novice to AI practitioner in the shortest time possible. I taught this course over a period of 3 days so it is really fast paced. Enjoy!

Follow the link to see the lecture with Wolfram Notebook From Novice to AI

How clear is this post?
By | June 24th, 2019|Mathematica, Uncategorized|0 Comments

Learn Wolfram Mathematica in the Cloud Part 6

Today we delve into Associations aka Dictionaries in languages like Python

How clear is this post?
By | May 24th, 2019|Level: Simple, Mathematica|0 Comments

Learn Wolfram Mathematica in the Cloud part 5

Let’s do some list FU, a kind of Kung Fu with Wolfram language lists

How clear is this post?
By | May 22nd, 2019|Level: Simple, Mathematica, Uncategorized|0 Comments

Learn Wolfram Mathematica in the cloud part 4

Diving deeper into lists

How clear is this post?
By | May 16th, 2019|Level: Simple, Mathematica|0 Comments

Learn Wolfram Mathematica in the cloud part 3

Dipping into Lists

How clear is this post?
By | May 14th, 2019|Level: Simple, Mathematica, Uncategorized|0 Comments

Learn Wolfram Mathamatica Part 2

Today we see how to use Wolfram language as a Calculator using the Notebook environment

How clear is this post?
By | May 10th, 2019|Level: Simple, Mathematica|0 Comments

Introduction to Wolfram Mathematica programming

Mathematica is becoming an indispensable tool for doing all kinds of computation and it is important to know how to use it as it will leverage your problem-solving skills, allowing you focus on higher level issues of modelling solutions rather than focusing too much on calculational details.

I will be posting short lessons regularly and the good news is you don’t need to install anything locally as all examples can be run online. If you need to do any form of extensive programming you can always go to the Wolfram Cloud and click on Programming Lab and get access for free.

Instructions on running code

If you don’t have a Wolfram ID, create one as this will give you access to the Wolfram Cloud. After you have done this sign in. If you have one then simply sign into the Wolfram Cloud.

If you have downloaded the notebook file from the blog and saved it somewhere then do the following to upload it to the cloud so you can play with the code.…

By | May 9th, 2019|Level: Simple, Mathematica|0 Comments

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.…