this post was submitted on 06 Feb 2024
104 points (94.1% liked)

Programming

16769 readers
168 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 22 points 6 months ago* (last edited 6 months ago) (3 children)

You NEED to be good be in math to program.

Whilest for some highly specialist fields you definitly do, but for a lot of jobs things don't get more complex than calculating averages.

[–] [email protected] 35 points 6 months ago (3 children)

OTOH, you need to be good at the same kinds of reasoning that leads one to be good at math. Not knowing much math isn't a problem, but not being able to learn math is probably a dealbreaker.

[–] [email protected] 12 points 6 months ago

I'm bad at math and struggled heavily through calc 2 and barely passed with a D+ but had little issue with data structures and algorithms (except when the algorithms were written in math notation, but still got through it after being explained in a logical set of steps instead).

[–] [email protected] 10 points 6 months ago

Nail on the head.

The reason programming curriculums are so math heavy is because of teaching logic.

You're either right or wrong in math. There is ONE answer to the formula. You can sometimes get there different ways though. The logic on your path is the key.

[–] [email protected] 4 points 6 months ago (1 children)

I'd I unironically say that philosophy and logic classes are extremely helpful for programming.

[–] [email protected] 2 points 6 months ago

When I was in college I took a symbolic logic class taught by the philosophy department that was indeed useful. OTOH, I was told later it was originally created as a CS class and only moved to the philosophy department for political reasons.

[–] [email protected] 11 points 6 months ago (1 children)

I'd argue that you do need to be good at math to be an effective programmer, it's just that that doesn't mean what a lot of people think it means. You don't need to know all the ins and outs of quadratics, integrals, and advanced trigonometry, but I think you do need to have a really solid, gut-level understanding of basic algebra and a bit of set theory. If you're the sort of person whose head starts to swim when you see "y=3x+2", you're going to find programming difficult at best.

[–] nitefox -2 points 6 months ago

I don’t even know what a y=3x+2 is but I have no problem with programming, algorithms and data structures

[–] [email protected] 6 points 6 months ago

I don't think it's so much about the actual math, but learning good logic and problem solving skills, which math helps with.