Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

I suck at math!

Maths isnt my strong point, and since i've started exploring Javascript I'd say some of the mathematical concepts have gotten the better of me. Does anyone have any handy resources that break down the math we use in programming in a little more depth than we get in the videos?

Perhaps a maths course would be a cool addition to the curriculum at some point in the future, every programmer uses some math after all..

Thanks :)

1 Answer

Daniel Medina
Daniel Medina
13,863 Points

Good evening Gavin,

Here are some great, free videos on Math for programmers:

Maths for Programmers - https://www.youtube.com/watch?v=2SpuBqvNjHI

College Algebra - Full Course - https://www.youtube.com/watch?v=LwCRRUa8yTU

Linear Algebra - https://www.youtube.com/watch?v=JnTa9XtvmfI

Precalculus Course - https://www.youtube.com/watch?v=eI4an8aSsgw

However, I think it's far more beneficial to narrow down which specific parts of programming are challenging. I advise making a small list of particular areas to focus on. One thing you can do is to have a set of notes and have it set up in question / answer or problem / solution format. It would look something like this:

ex. [header] Getting null in JavaScript Question: Why am I getting null in the following block of code?
[code block]

Answer: I forgot to/I was missing XYZ in my code. Here is the completed code block: [code block]

Personally, I find this very effective as it helps me keep track of things and quickly find if I've already searched for something online.

Best of luck with both Math and programming!