1

I am a student of computer science and engineering. My understanding of mathematics is not very good. I am getting very hard time studying subject that require a background on mathematics. So, I decided to start from the level 0. Wikipedia have a entry where I learned that there are a few category to watch for.

Foundation:

  1. Mathematical logic
  2. Set theory
  3. Category theory
  4. Theory of computation

Quantity:

  1. Natural numbers
  2. Integers
  3. Rational numbers
  4. Real numbers
  5. Complex numbers

Structure:

  1. Combinatorics
  2. Number theory
  3. Group theory
  4. Graph theory
  5. Order theory
  6. Algebra

Space:

  1. Geometry
  2. Trigonometry
  3. Differential geometry
  4. Topology
  5. Fractal geometry
  6. Measure theory

Change:

  1. Calculus
  2. Vector calculus
  3. Differential equations
  4. Dynamical systems
  5. Chaos theory
  6. Complex analysis

That buys me to start from foundation. So, I started mathematical logic. But It doesn't look like as a starting place.


So, My question is, What would you do If you were to start over from level 0? And how you would complete these listing understanding at least at basic level?

3 Answers3

4

From my viewpoint doing logic before do other thing in mathematics is useless, theoratically it's possible of course but you need examples and motivation first.

I think linear algebra is the best place for begin. It can be done at a very elementary level, and show you the very beginning of abstract reasonning but also with lot of concrete computations. It's the first thing I learned at university, with calculus, but I think calculus is a bit more complicated.

If you feel lost, then you should do some high school math before doing it, but I don't think it's necessary especially if you are computer science student.

So I think a good order for you could be :

  1. Linear Algebra
  2. Discrete Maths
  3. Abstract Algebra

Some reference are in this thread for linear algebra.

Finally, be curious ! If some topic seems very interesting for you, go on Wikipedia, read more, take a book and try to do some exercises ! You will not become a god in this topic of course but that's how you will really learn math if you're interested.

Edit : I just add a little exercise for you if you're interested. Try to prove the Newton Binomial Formula : if $x,y$ are reals numbers and $n$ a natural number, then try to prove this equality : $$ (x+y)^n = \sum_{k=0}^n \binom{n}{k}x^ky^{n-k} $$ where $\dbinom{n}{k} = \frac{n!}{k!(n-k)!}$ and $n! = n \times (n-1) \times (n-2) \times\cdots \times 2 \times 1$.

  • 2
    Finally, be curious ! So, that's the way to go. Will start with linear algebra. thank you. – Shakil Ahamed Jun 30 '15 at 17:14
  • 1
    Yes ! And don't forget if you're stuck this fantastic website and its users are here for helping you :-) –  Jun 30 '15 at 17:17
  • @silentboy : if you're interested, I added one challenging but feasible exercise that was torturing everyone (it was the first exercise I did at university !) –  Jun 30 '15 at 18:55
  • Thanks for the exercise. I will try it. I collected the Linear Algebra done right book. But, It says it is a second course on linear algebra. What do you think the first one should be? – Shakil Ahamed Jul 01 '15 at 18:41
  • 1
    @silentboy This PDF looks very nice : https://www.math.ucdavis.edu/~anne/mat67_course_notes.pdf –  Jul 01 '15 at 20:12
1

In my opinion it is not necessary for you to start from level 0. I guess you have a mathematical background (high school). If this background is not very good, you should start with revision of high school maths. Then you can look to university study programmes of maths. They usually start with calculus and linear algebra. These parts of mathematics have many applications and it is necessary to manage them before you move to another more advanced topics. Combinatorics is also very important for computer science and so it can be useful for you to study it together with calculus and linear algebra.

mcihak
  • 614
  • 4
  • 12
  • I really tried it. Here, the education system is so good to follow this advice. I am at least at top 2% in my class who understand math a bit. We have vector calculus at first semester even though the calculus course is at 3rd semester. – Shakil Ahamed Jun 30 '15 at 16:58
  • 1
    If you want to start with calculus on your own, I can advice Khan Academy videos. Many of them are great. – mcihak Jun 30 '15 at 17:08
  • thanks for the resource advice for calculus. – Shakil Ahamed Jun 30 '15 at 17:15
1

One learns math in the best way, if one has a concrete application in mind. Often it is to abstract if you start the mathematical logic lectures. Maybe as an student of computer science you like algorithms and so you can consider to learn numerics. And I think it is not necessary to start with level 0. If you start learning for example optimization, you will learn the calculus needed for the optimization. The first semesters of learning mathematics I only learned it without imagination. Then when I started to apply the theory I started to understand the theory much better. There are some nice example for you as a computer scientist like random walks, simplex algorithm for solving linear optimization problems or numerical integration. This would be learning by doing. But if you are really interested in the deep theory you need to have a good understanding of basic linear algebra and calculus.

epsilon
  • 309