How much math you need for programming (2014)
lispmachine.wordpress.com
How much math you need for programming (2014)
1–10 of 187 posts
Re: How much math you need for programming (2014)
#2Re: How much math you need for programming (2014)
#3Re: How much math you need for programming (2014)
#4That being said some domains equipment require a fair bit of maths. Currently working on a game engine and trigonometry and linear algebra are very common tools for me.
Re: How much math you need for programming (2014)
#5In my experience, you don't need it if you work on the more conservative projects. If you want to build the next YouTube or facebook, you might find a good understanding of math invaluable.
Re: How much math you need for programming (2014)
#6Re: How much math you need for programming (2014)
#7For some applications, you need a great deal of advanced dynamic maths, for some applications, matrix math, for some, heavy-duty topology, etc.
I have a lot of admiration for folks that write software that implements advanced mathematical reasoning, but that is only a part of what is required to develop shipping applications and systems.
For me, I learned the standard calculus stuff, but never used it. I was never a math whiz.
What has probably had the most impact for me in my work, was good ol’ Algebra 2. It taught me how to do things like express word problems as formulae, use variables, balance equations, understand functions, abstraction and encapsulation, etc.
Re: How much math you need for programming (2014)
#8Re: How much math you need for programming (2014)
#9Depends on what you write. For some applications, you need a great deal of advanced dynamic maths, for some applications, matrix math, for some, heavy-duty topology, etc. I have a lot of admiration for folks that write software that implements advanced mathematical reasoning, but that is only a part of what is required to develop shipping applications and systems. For me, I learned the standard calculus stuff, but ne…
Re: How much math you need for programming (2014)
#10Programming is not math. Computer science however is based on boolean and predicate logic and borrows requires mathematical thinking and methods as well. That being said I don't find the basic algorithmic analysis stuff very math heavy unless we go into induction and analysing recursive functions. That being said some domains equipment require a fair bit of maths. Currently working on a game engine and trigonometry a…