What kind of maths do i need to go into programming?

  • Context: High School 
  • Thread starter Thread starter earthquaketry
  • Start date Start date
  • Tags Tags
    Programming
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
earthquaketry
Messages
1
Reaction score
0
i work in 3d graphic actually , and new to max script anyway there such things that i faced when studying like delta, sin, atan, atan2, ..... etc and there is much more and i know nothing about this also what its name or kind of math to begin to study.
where can i find such a resources to learn this?
please be specific , your words could big differences for me . thanx...
 
Last edited:
Mathematics news on Phys.org
Matrices mostly. It's not very complicated but most 3D APIs are based around multiplying matrices (certainly for openGL), it also helps when you come to slightly more complicated things like quaternions
 
sin, atan, atan2

These come from trigonometry. Trigonometry is a way to relate angles and lengths. Usually it is offered as a high school course, and it is also availible at community colleges and universities. The course should take about 1 semester, ~4 months.

delta

This means "by how much the quantity changes." A good place to learn this math is in the first year of calculus, which you can only take after trigonometry. Another good place to learn about 'delta' is in an introductory physics course.

If you look at any curriculum for a computer science major at a US university, they usually have to take calculus and intro physics, which I think is a good idea.

After these classes you will be ready to learn about the Matrices that mgb_phys mentioned, but usually this course is taught after calculus, it's called Linear Algebra.