The Buy Side : Review

The book is a story recounted by Turney Duff about his rise and fall on the Buy side. Turney Duff graduates from Ohio university in 1994 and starts hunting for a job on Wall Street. Thanks to his uncle Tucker and a random conversation about a soap opera with a HR lady, he gets a job at Morgan Stanley in Private Wealth group as a Sales assistant. Three years later, his dream of getting in to trading seems like a mirage until one day he gets a chance to organize a party.

Data Structures and Algorithms using Python

There aren’t many Python books that talk about Data Structures. One of the reasons could be that Python provides a rich set of collections like list, dict, queue, set etc. that writing a new Data Structure might be unnecessary. That being the case, it is always helpful to know the time complexity of various operations in list, dict,etc. For some of the algorithms based on trees and graphs, there is no option but to build an abstract data structure to suit the problem one is trying to solve.

Quote for the day

Mathematicians find it easier to understand and enjoy ideas which are clever rather than subtle. Measure theory is subtle rather than clever and so requires hard work to master. -- T. W. Körner

The Laplace Transform : Review

Laplace Transform is a very useful technique as it can be used in a ton of problems in various contexts. Here’s a random sample of the places where it’s use makes computations elegant : Solving Difference equations in various Queueing configurations. Renewal theory – Solving Key Renewal equation. Solving specific type of ODEs. Solving specific type of PDEs. Computing convolution of two functions.