-
Monty Hall problem simulation
I’ve written a simple program that simulates the famous problem. To do that, I’ve taken advantage of some of the object-oriented features in Python. Description Suppose you’re on a game show, and you’re given the choice of three doors: Behind one door is a car; behind the others, goats.
Read more… -
Newton method from scratch
Attemp to implement the Newton-Raphson method in Python Description Studying calculus I found this interesting numeric method for approximating the real zeros of a function. That is, for estimating solutions for equations of the form $f(x)=0$.
Read more… -
Analyzing Data with Python (edX project)
Final assigment of the course IBM: DA0101EN Analyzing Data with Python. Description The goal was to analyze and predict alcohol consumption by country using features such as beer servings and wine servings.
Read more…