• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

what computer science courses are useful for a quant?

Joined
12/13/11
Messages
83
Points
18
Do quants use stuffs like algorithm, theory of computation a lot?
If not, what computer science knowledge is used a lot?
 
Useful CS stuff:

1. Data structures.
2. Complexity Analysis.
3. Creating algorithms in a language-independent way.
4. Matrices.
 
5. Program 1-4 using STL and Boost C++ libraries.

These are then the foundations for numerical work.
you just mentioned algorithms. How well does a quant need to know algorithm?
Should a quant understand very well the theoretical stuffs underneath algorithm like set theory, logic, complexity theory and number theory?
Or just being able to write codes using trees, hash tables or dynamic programming is good enough?
 
you just mentioned algorithms. How well does a quant need to know algorithm?
Should a quant understand very well the theoretical stuffs underneath algorithm like set theory, logic, complexity theory and number theory?
Or just being able to write codes using trees, hash tables or dynamic programming is good enough?

Try to get a good theoretical foundation so that you know what you are doing when in STL and Boost.

I think writing your own CS algos is nice, it has already been done almost surely.
 
Back
Top