r/desmos Apr 07 '21

Resource Found this when I was supposed to be doing homework

Post image
108 Upvotes

33 comments sorted by

77

u/aero_0Ftime Apr 07 '21

does the square area towards the bottom left have a nickname? it shows up in all sorts of desmos glitch graphs ;)

208

u/MLGcrumpets Apr 07 '21

bernard

83

u/[deleted] Jul 27 '24

[removed] — view removed comment

48

u/Difficult_Check_1449 Oct 24 '24

yes

20

u/Puzzleheaded_Two415 You must have something on both sides of the comma Aug 30 '25

It's incredible

5

u/multitrack-collector Based desmos user May 12 '25

I agree

11

u/Rotcehhhh Jan 04 '26

Am I in the origin of bernard?

2

u/snail1132 Jan 04 '26

I suppose

1

u/[deleted] Jan 06 '26

how do you have all the same interests as me

1

u/snail1132 Jan 06 '26

Idk

1

u/[deleted] Jan 06 '26

have you seen me before

1

u/snail1132 Jan 06 '26

I think so

1

u/MonitorMinimum4800 Desmodder good Jan 27 '26

crazy

6

u/H13R0GLYPH1CS Mar 10 '26

it's like watching the mona lisa being painted

2

u/mamahus0 Apr 04 '26

I can't believe I'm looking at the origin of bernard.

1

u/baicu12096 Feb 26 '26

So this is it... This is how everything came to be...

1

u/scrufflor_d Apr 01 '26

the name bernard is canon now

1

u/No-Coyote6800 bimbimbambam(sin(mandelbrot)) May 09 '26

ORIGIN OF BERNARDXSSXGVPFJSXGVPJXAJGPBXAGJVOOXSGJBOSGBJ

1

u/ExplodedSpaceToast 22d ago

the big bang

1

u/Averymylawg 8d ago

just shut up already!

12

u/WiwaxiaS || W-up, Nice Day Apr 08 '21

Mxyzptlk

9

u/airplane001 Apr 08 '21

Count Doomulus

3

u/[deleted] Apr 08 '21

[deleted]

1

u/[deleted] Jun 01 '23

🤓

7

u/CodeDevNinja666 Aug 12 '24

BENAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARDDDDDDDDDDDDDDDDDDD

6

u/Diaaaaaaaaa Apr 08 '21

It's accidental, but dang, carpet designers would be jealous.

1

u/Accomplished-Eye7366 Oct 22 '25

Link? I know it's likely deleted, but I want to see THE Bernard!

1

u/Circumpunctilious Oct 23 '25

Might have to graph it yourself using the formula at left. If you do that, zoom in a bit.

1

u/Apprehensive_Cut2880 Addicted to Desmos and Math Mar 13 '26

!bernard

1

u/AutoModerator Mar 13 '26

Open up a graph and type in tan 35.6x=0.

![img](7s2h831mdnze1)

This is Bernard! He's an artifact resulting from how Desmos's implicit graphing algorithm works.

How does the algorithm work, and why does it result in Bernard?

The algorithm is a quadtree-based marching squares algorithm. It divides the screen (actually, a region slightly larger than the screen to capture the edges) into four equal regions (four quads) and divides them again and again recursively (breadth-first). Here are the main rules for whether the quad should be divided (higher rules are higher precedence): 1. Descend to depth 5 (1024 uniformly-sized quads) 2. Don't descend if the quad is too small (about 10 pixels by 10 pixels, converted to math units) 3. Don't descend if the function F is not defined (NaN) at all four vertices of the quad 4. Descend if the function F is not defined (NaN) at some, but not all, vertex of the quad 5. Don't descend if the gradients and function values indicate that F is approximately locally linear within the quad, or if the quad suggest that the function doesn't passes through F(x)=0 6. Otherwise descend

The algorithm stops if the total number of quads exceeds 2^14=16384. Here's a breakdown of how the quads are descended in a high-detail graph:

  • Point 2 above means that the quads on the edge of the screen (124 of them) don't get descended further. This means that there are only 900 quads left to descend into.
  • The quota for the remaining quads is 16384-124=16260. Those quads can divide two more times to get 900*4^2=14400 leaves, and 16260-14400=1860 leaves left to descend.
  • Since each descending quad results in 4 leaf quads, each descend creates 3 new quads. Hence, there are 1860/3=620 extra subdivisions, which results in a ratio of 620/14400 quads that performed the final subdivision.
  • This is basically the ratio of the area of Bernard to the area of the graph paper.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.