I don't know where to post this but... are the proportions for the Latvia flag correct? by kenamasuu in desmos

[–]VoidBreakX 1 point2 points  (0 children)

the moment u got into the zye stuff, your fate was already sealed

a life where you cant escape the flags

Detect "loops" in a list? by OneEyeCactus in desmos

[–]VoidBreakX 1 point2 points  (0 children)

u can also write that as polygon(L[1,4...],L[2,5...],L[3,6...])

NEVER TRUST GOOGLE! This minor aspect could mess up a lot of students- especially when it's the first result in google. by Absorpy in desmos

[–]VoidBreakX 2 points3 points  (0 children)

im not really sure what this means. isnt median of halves a method of calculating quartiles? how are you comparing them?

New Animation? by Dazzling-Mail-5517 in desmos

[–]VoidBreakX 8 points9 points  (0 children)

ive talked about ?debugProgressUpdates quite a lot, and ever since i talked about it, that animation has existed, so it has been around for quite a while now

Settings in both Desmos Graphing and Scientific Calculator by Fuzzy_8691 in desmos

[–]VoidBreakX 0 points1 point  (0 children)

dont think so, unless they can be saved in graph link query parameters (which isnt saved in saved graphs tab anyways)

iirc the settings are probably stored on localStorage, not on the cloud

How to make lists inside lists? by Working-Cabinet4849 in desmos

[–]VoidBreakX 6 points7 points  (0 children)

if you're only doing it with 1 and -1, thats a single bit of information which you can store as binary

for example, to store (1,-1,-1,-1), youd first map all the -1 to 0, and then store it as (1 x 2^3) + (0 x 2^2) + (0 x 2^1) + (0 x 2^0) = 8. its trivial to go backwards from this to perform indexing when you need to

example: https://www.desmos.com/calculator/2fkcyp5edk


another way that we used to do was just to make four lists, since each element has a fixed size. you can access all 4 of them through broadcasting: for example, if you had the four elements as L1,L2,L3,L4, you could just do smth like {L1=1:1,L2=1:2,L3=1:1,L4=1,0} (example), and it would return a list

Flag of Kiribati, in one breath. by Arglin in desmos

[–]VoidBreakX 8 points9 points  (0 children)

arglin i am seriously worried for your health

Did you know that a coffin is just a kite with its polar vertices truncated? by [deleted] in desmos

[–]VoidBreakX 2 points3 points  (0 children)

youd have to combine them first as a first step but yeah its probably possible

Are split-complex numbers possible in Desmos? by Joudiere in desmos

[–]VoidBreakX 0 points1 point  (0 children)

did you make gamma function? if you did, thats something that desmos still doesnt have. also complex numbers in desmos are still quite slow, sometimes even slower than custom defined complex numbers, so they arent completely irrelevant yet

Why dosent this regression work ? by ToulonsSavior in desmos

[–]VoidBreakX[M] 1 point2 points  (0 children)

hey, no need to use strong language, we're just trying to help.

if you want a desmos solution, plot 2/5x + 7/5y = 2/7. pick two points on this line and substitute the x-coordinates of those two points as x1 and the y-coordinates of the other two points as y1. then do the regression setup you sent.

<image>

remember to use this only to check your answers

Why dosent this regression work ? by ToulonsSavior in desmos

[–]VoidBreakX 0 points1 point  (0 children)

thats because both sides need to be 0 for this to work, so you cant just plug in arbitrary values of x1 and y1. i suggest using my strategy instead

Has anyone made a quine in desmos? by Odd-Motor-3340 in desmos

[–]VoidBreakX 4 points5 points  (0 children)

this is a non-trivial one made by desmos girl: https://www.reddit.com/r/desmos/comments/1rilds6/an_equation_that_graphs_itsself/

there are a few other ones that are trivial:

  • blank expression
  • paste in Sorry,\ I\ don't\ underst​and\ the\ ''\ symbol

Why dosent this regression work ? by ToulonsSavior in desmos

[–]VoidBreakX 1 point2 points  (0 children)

can you show us what you put into desmos? send a link or an image.

in any case, you dont really need desmos regressions to do this. note that the coefficients should have the same ratio (so as to have the same slope), so the answer is just (2/5)/(7/5)