this post was submitted on 06 Dec 2023
21 points (100.0% liked)

Asklemmy

49813 readers
432 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 6 years ago
MODERATORS
 

I notice programming stuff leaks into my thinking and writing often but I actually enjoy the various constructs that help clarify thinking. I don't have any formal background in logic tho :(

What are some useful and accessible logical tools/operators/symbols that help in thinking+"pseudocode" Edit: definitely useful math/cs/logical symbols are particularly interesting

If you can, please copy/paste the actual unicode symbol or whatever

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 2 years ago (1 children)

I like noticing when something is the derivative/integral of something.

Often using a derivative helps break something down and an integral might show an end result.

For example, a software product is the sum of its commits.

[–] [email protected] 3 points 2 years ago* (last edited 2 years ago) (1 children)
[–] [email protected] 4 points 2 years ago

I use the term rather loosely so it's hard to say because it depends on the setting and how pedantic you want to be.

In a continuous setting (time, for example), you will usually see the derivative of a function f(t) being denoted as a df(t)/dt. In some cases it would also be written as f'(t). Engineers are pretty much always dealing with functions across time so they added another notation which is simply a dot over a variable. E.g. if x is your position in space then αΊ‹ is your velocity (the derivative over time). You can add another dot if you want your acceleration (the second derivative over time = the derivative of the velocity).

The counterpart of a derivative is the integral which is always denoted by ∫f(t)dt.

The discrete case is a bit more tricky because these things arent that well defined in these cases. People dont seem to mind if you go with the next best thing. The derivative is the difference between steps (Im not aware of a notation for this) and for the integral you would use a sum βˆ‘.

Note that even this wall of text doesnt cover all of it but I hope it gets the point across.