Friday, July 10, 2020

Binary Test Analysis

“Binary Test” is a name I gave to a theoretical testing method to identify the infected samples. I got the idea from this tweet

It is a similar core idea as the Binary Search algorithm, hence the name, but instead of looking for one specific sample, we are trying to identify all samples that are infected. The basic idea is, you mix all samples, perform one single test on the batch – if it is negative then none of the samples are infected, if it is positive then you split the batch into two and recurse.

Sunday, July 5, 2020

Network Disease Spread Simulator

The Network Disease Spread Simulator uses a modified Breadth-First Search (BFS) algorithm, to simulate the infection spread throughout the network. This simulator is based on an in-class project I worked on alongside Aditya Pimplaskar and Daniel Koo.
By adjusting multiple variables, such as fatality rate, and transmission rate, you can observe day-by-day progression of a disease throughout a random graph.