1
3
2
5
submitted 4 days ago by 33550336@lemmy.world to c/math@lemmy.world
3
13
submitted 6 days ago by Gonzako@lemmy.world to c/math@lemmy.world
4
10
submitted 4 weeks ago by andros_rex@lemmy.world to c/math@lemmy.world

Many of my clients are in a class that doesn’t teach them, and it’s sad because they are my favorite for chain rule and u-sub.

5
3
submitted 1 month ago by tdTrX@lemmy.ml to c/math@lemmy.world
6
6
The Man Who Loved Only Numbers (archive.nytimes.com)
submitted 1 month ago by eah@programming.dev to c/math@lemmy.world
7
15
submitted 2 months ago* (last edited 2 months ago) by surrealpartisan@lemmy.world to c/math@lemmy.world

Last night an old idea came back to me, an idea about a function where all the derivatives start from zero and then grow smoothly. I thought it would be impossible, but then I found some interesting stuff on Wikipedia. So, I learned to use SymPy and wasted a lot of time with it. Here's a report of my (non-)findings.

(UPDATE: I did some numerical differentiation, which showed that h(x) does have negative derivatives. See details in this comment. A disappointment, although perhaps not a surprising one. It doesn't however, necessarily mean the goal is impossible.)

So, if anyone knows whether such a function exists and what it looks like, please tell me.

8
12
submitted 2 months ago by HexesofVexes@lemmy.world to c/math@lemmy.world

Sharing this as it's one of my favourite things on the web.

9
5
submitted 2 months ago by noumenon@lemmy.world to c/math@lemmy.world
10
6
A4 Paper Stories (susam.net)
submitted 2 months ago by noumenon@lemmy.world to c/math@lemmy.world
11
16
Why πŸ˜“ (piefed.cdn.blahaj.zone)
12
9
Countdown (lemmy.world)
submitted 3 months ago by noumenon@lemmy.world to c/math@lemmy.world
13
4
submitted 3 months ago* (last edited 3 months ago) by Yany@lemmy.world to c/math@lemmy.world
14
2
submitted 4 months ago by Artisian@lemmy.world to c/math@lemmy.world

Research claiming that following the taught algorithm is more common for women (and those who agree with 'I want to please the teacher' more broadly), while trying to find shortcuts is more common from men. The latter seems correlated with performance on high stress math tests.

15
3
Understanding ECDSA (avidthinker.github.io)
submitted 4 months ago by floofloof@lemmy.ca to c/math@lemmy.world
16
7
Randomness Testing Guide (random.tastemaker.design)

Statistical Tests to determine whether a bit-stream can be considered "random"

If we were to flip a coin 10 times, we would expect to see roughly 5 heads and 5 tails. Let's assign 00 to heads and 11 to tails. Therefore, we might see a sequence like this...

17
3
Backpropagation Explainer (xnought.github.io)
submitted 4 months ago* (last edited 4 months ago) by PlanterTree@discuss.tchncs.de to c/math@lemmy.world

Backpropagation is one of the most important concepts in neural networks, however, it is challenging for learners to understand its concept because it is the most notation heavy part

18
30
submitted 5 months ago by eah@programming.dev to c/math@lemmy.world
19
5

cross-posted from: https://sh.itjust.works/post/48633930

Normally, we use a place-value system. This uses exponentials and multiplication.

1234
^^^^
||||
|||β”” 4 * 10^0 = 4
||β”” 3 * 10^1 = 30
|β”” 2 * 10^2 = 200
1 * 10^3 = 1000

1000 + 200 + 30 + 4 = 1234

More generally, let d be the value of the digit, and n be the digit's position. So the value of the digit is d * 10^n^ if you're using base 10; or d * B^n^ where B is the base.

1234
^^^^
||||
|||β”” d = 4, n = 0
||β”” d = 3, n = 1
|β”” d = 2, n = 2
d = 1, n = 3

What I came up with was a base system that was polynomial, and a system that was purely exponential, no multiplication.

In the polynomial system, each digit is d^n^. We will start n at 1.

polynomial:
1234
^^^^
||||
|||β”” 4^1 = 4 in Place-Value Decimal (PVD)
||β”” 3^2 = 9 PVD
|β”” 2^3 = 8 PVD
1^4 = 1 PVD

1234 poly = 1 + 8 + 9 + 4 PVD = 22 PVD

This runs into some weird stuff, for example:

  • Small digits in high positions can have a lower magnitude than large digits in low positions
  • 1 in any place will always equal 1
  • Numbers with differing digits being equal!
202 poly = 31 poly
PVD: 2^3 + 2^1 = 3^2 + 1^1
8 + 2 = 9 + 1 = 10

In the purely exponential system, each digit is n^d^. This is a bit more similar to place value, and it is kind of like a mixed-base system.

1234
^^^^
||||
|||β”” 1^4 = 1
||β”” 2^3 = 8
|β”” 3^2 = 9
4^1 = 4

1234 exp = 4 + 8 + 9 + 1 PVD = 22 PVD

However it still runs into some of the same problems as the polynomial one.

  • Small digits in high positions can have a lower magnitude than large digits in low positions (especially if the digit is 1)
  • The digit in the ones place will always equal 1
  • Numbers with differing digits can still be equal
200 exp = 31 exp
PVD: 3^2 = 2^3 + 1^1
9 = 8 + 1

So there you have it. Is it useful? Probably not. Is it interesting? Of course!

20
7
submitted 5 months ago by jqubed@lemmy.world to c/math@lemmy.world
21
8
submitted 6 months ago* (last edited 6 months ago) by nymnympseudonym@piefed.social to c/math@lemmy.world

Nice accessible talk from the Simons Institute presenting one researcher's view on where math is and where it's going.

Summary: there is too much to keep up with and modern proofs are almost too big for individuals to grok. AI with automatic theorem provers is a promising immediate term path forward.

22
5
Structured motivated proofs (gowers.wordpress.com)
submitted 6 months ago by Artisian@lemmy.world to c/math@lemmy.world
23
11
submitted 6 months ago by x4740N@lemmy.world to c/math@lemmy.world

I live in a country that uses metric

I'm a bit nearsighted meaning distant objects appear blurry and I want to know how to work out mathematically how far I can see clearly without my glasses from my glass prescription to see If its worth getting prescription lenses for VR because I don't want to waste money if I don't need them

24
6
Minesweeper thermodynamics (oscarcunningham.com)
25
7
submitted 9 months ago by CanadaPlus@lemmy.sdf.org to c/math@lemmy.world

cross-posted from: https://lemmy.sdf.org/post/37414239

I've read the old papers proving that fact, but honestly it seems like some of the terminology and notation has changed since the 70's, and I roundly can't make heads or tails of it. The other sources I can find are in textbooks that I don't own.

Ideally, what I'm hoping for is a segment of pseudocode or some modern language that generates an n-character string from some kind of seed, which then cannot be recognised in linear time.

It's of interest to me just because, coming from other areas of math where inverting a bijective function is routine, it's highly unintuitive that you provably can't sometimes in complexity theory.

view more: next β€Ί

math

1055 readers
3 users here now

General community for all things mathematics on @lemmy.world

Submit link and text posts about anything at all related to mathematics.

Questions about mathematical topics are allowed, but NO HOMEWORK HELP. Communities for general math and homework help should be firmly delineated just as they were on reddit.

founded 2 years ago
MODERATORS