Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
I went through FSND at Udacity and are thinking some calculus and other maths at MIT open course ware. Is the maths worth it for a programming career?
What tips do you have on learning what one needs to learn?
I want it all, that is, besides the actual school - I'm super curious and am unsure how much / what I actually need to learn. Just research more concepts, and use them in practice? -
devios157706y@Kandelborg That’s a huge question and there’s no short answer. As for the maths, good ole algebra has been the most useful to me personally, but I would imagine statistics would also be very handy if doing stuff like machine learning. I honestly don’t see calculus as being all that helpful, unless you’re doing actual mathematical or scientific programming.
I would start with classical algebra and geometry and go from there. Linear algebra (matrices) is worth knowing as well, especially if you get into graphics programming.
As for CS, like I said start with complexity and get a good handle on “Big O” notation and how complexity combines and grows. You will need a general understanding of functions and how they look graphed out (n, n^2, n^3, log n, n log n, 2^n, etc). These relate directly to how computationally expensive an operation is based on its input size. You will relate back to this knowledge with every single algorithm you write.
Related Rants
-
linuxxx13Not sure yet. I finished my study for Software Engineering and I'm currently working as a Linux engineer. But...
-
C0D43I don’t have a degree, nor has a degree ever prevented me from being hired / doing my job. Now that’s not...
-
duckWit6Dropped out to grow a business I co-founded. Respect to all those that finished. I was already working a six f...
I found university very worthwhile, mainly for what it exposed me to that I wouldn’t have necessarily learned otherwise. University exposed me to a lot of knowledge which allowed me to discover the fields and concepts that really interested me. It also forced me to learn math, and I’ve come to really love mathematics, even though my knowledge is still not that deep. I really respect and appreciate math now that I have more than a superficial understanding of it.
CS-wise, the things that have been most useful in practice have been complexity, data structures, concurrency, and others, but complexity is probably the absolute most important thing to at least learn the basics of.
I would not say that university is a necessity though. You can absolutely get by teaching yourself, especially if you are disciplined/interested enough to keep doing it. The important thing is to learn *what* to learn.
rant
wk145