612
Calculus made easy (lemmy.world)

"All the little bits"

you are viewing a single comment's thread
view the rest of the comments
[-] ricecake@sh.itjust.works 8 points 3 months ago

That's an interesting notion.
For you, is it when it's presented like: sum = sum([1,2,3]), or when it's dropping in and explaining how the sum function is implemented?

I think there's definitely something there in either case, but teaching math through "how you would implement it in code" seems really interesting. You could start really basic, and then as you get to more complicated math, you keep using the tools you built before. When you get to those "big idea" moments, you could go back to your old functions and modify them to work in the new use case while still supporting the old. Like showing how multiplication() needs to change to support complex numbers without making anything else different.

[-] Buelldozer@lemmy.today 8 points 3 months ago* (last edited 3 months ago)

but teaching math through “how you would implement it in code” seems really interesting.

This is near exactly how I handled learning advanced mathematics back in the late 80s and early 90s. This method takes the abstract and makes it practical, which is what many people really need in order to effectively learn.

[-] Diplomjodler3@lemmy.world 4 points 3 months ago

I know this is just a simple example but sum() doesn't teach you about the concept of sums. It would have to be something like:

def sum_up(my_list):
    result = 0
    for item in my_list:
        result = result + item
    return result

Then you could run that through a debugger and see how the variables change at every step. That way you can develop an understanding of what's going on there.

[-] ricecake@sh.itjust.works 2 points 3 months ago

Yeah, thinking about it a bit more, I could have asked it as:

Is it seeing how it's used with plain, more spelled out names that helps, or is it seeing how it works "under the hood" that makes it more clear?

Your answer clarifies things for me though, and I agree that that would be a really nice book/program/learning thing. :)

this post was submitted on 30 Apr 2024
612 points (98.1% liked)

Science Memes

9915 readers
2528 users here now

Welcome to c/science_memes @ Mander.xyz!

A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.


Sister Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS