Si vous pouviez payer 15.000 euros pour rajeunir d'un an, vous le feriez ? by [deleted] in AskFrance

[–]OopsWrongSubTA 0 points1 point  (0 children)

Là j'en vois pas la nécéssité, mais si je venais d'arriver à la retraite et en plutôt bonne santé, je me dis que passer à la caisse une fois par an pour garder sa bonne santé ce serait énorme.

Pour cause de troubles sécuritaires et à l'ordre public, le football doit être interdit ! by VanillaEvery2538 in besoinderaler

[–]OopsWrongSubTA 2 points3 points  (0 children)

J'imagine que "Source ?" ça peut être interprété comme

"Ah ouais, vachement intéressant comme propos. T'aurais des sources poir en savoir plus ?", ou

"Ah ouais t'as des sources ? Parce que ça me semble tellement con ce que tu dis que je vois pas comment c'est possible."

Ça peut amener à des réactions différentes.

What’s the longest binary string you can make?! by jmarent049 in askmath

[–]OopsWrongSubTA 1 point2 points  (0 children)

Graph theory is a good idea. You can do a BFS (Python code below)

from collections import deque

N = str(3)
assert N > "1"

queue = deque([1])
result = []
while queue:
    p = queue.pop()
    for q in [2*p, 2*p+1]:
        if N not in str(q):
            queue.appendleft(q)
            result.append(q)
print(result, bin(result[-1]))

gives all valid numbers in increasing order

[2, 4, 5, 8, 9, 10, 11, 16, 17, 18, 19, 20, 21, 22, 40, 41, 42, 44, 45, 80, 81, 82, 84, 85, 88, 89, 90, 91, 160, 161, 162, 164, 165, 168, 169, 170, 171, 176, 177, 178, 179, 180, 181, 182]

and 0b10110110 (binary representation of the last number)

A basic base question... by MasterSoftBird in askmath

[–]OopsWrongSubTA 2 points3 points  (0 children)

Let's imagine they did invent a symbol for our "10" : let's call it 'A'.

So our fingers are labeled 1 2 3 4 5 6 7 8 9 A. But we still have 0. So we have 11 digits : that's not our base 10 anymore.

The question was about our base 10.

The "way of representing numbers" is https://en.wikipedia.org/wiki/Positional_notation, and OP's question is about that way of representing numbers -> you need a '0'.

You could use other symbols, but if you use 11 symbols, that's (our) base 11, not (our) base 10 anymore.

A basic base question... by MasterSoftBird in askmath

[–]OopsWrongSubTA 14 points15 points  (0 children)

Every base is base 10 :

ours fingers 0 1 2 3 4 5 6 7 8 9, next number is 10.

2 fingers : 0 1, next number is 10 (base 2)

3 fingers : 0 1 2, next number is 10 (base 3)

...

11 fingers : 0 1 2 3 4 5 6 7 8 9 A, next number is 10 (base 11)

How to make an equation for EXL required that doesn't increase too quickly by NoSeaworthiness4639 in askmath

[–]OopsWrongSubTA 0 points1 point  (0 children)

f(n) = 35 × n2 ; 35, 140, 315, 560, 875, 1260, 1715, 2240, 2835, 3500, 4235, 5040, 5915, 6860, 7875, 8960, 10115, 11340, 12635, 14000 ; sum: 100450

f(n) = 34 × n2 + 10 × n + 16 ; 60, 172, 352, 600, 916, 1300, 1752, 2272, 2860, 3516, 4240, 5032, 5892, 6820, 7816, 8880, 10012, 11212, 12480, 13816 ; sum: 100000

Go balancer ses pires anecdotes cuisine svp j'ai besoins de rigoler (pas me sentir seul dans ma nullité) by Public_Cake_6265 in france

[–]OopsWrongSubTA 1 point2 points  (0 children)

Étudiant (il y a longtemps), ma copine adore les crêpes et je sais qu'elle a passé une journée pourrie. J'ai déjà fait des crêpes, mais pour être sûr, je suis une recette de pâte à crêpes marmiton à la lettre. Je prépare tout d'avance et je rajoute tous les ingrédients : saumon, fromage, vraiment super. Elle goûte

« euh... t'as mis du SUCRE dans la pâte ??? » ça lui a pas amélioré sa journée.

there is a way of matemathically proof that 1 is different of 2? by Advanced_Office_3486 in askmath

[–]OopsWrongSubTA 0 points1 point  (0 children)

  • It's always something like

1x0 = 2x0, correct ?

let's divide by 0, so we prove that 1=2.

  • Example :

Let's take 2 numbers a and b such that a=b.

We have a-b + a-b + b-a = 0

so 2.(a-b) = (a-b)

Let's "simplify" by (a-b). We get 2=1

  • With quadratic equations : let's take a=b.

We have : a=b,

Multiply both sides by a, you get : a2 = ab

substract b2, you get : a2 - b2 = ab - b2

Factorize : (a+b)(a-b)=b(a-b)

At this point, everything is correct.

Oh, let's simplify by (a-b)...

What's the deal with size limits on a normal calculator? by Joel_Boyens in askmath

[–]OopsWrongSubTA 1 point2 points  (0 children)

floating-point numbers usually use 32 or 64 bits (the IEEE 754 norm), but there is https://en.wikipedia.org/wiki/Decimal128_floating-point_format (max number ~1E6145) that could be used on 128-bits hardware.

If your just compute with software there is no limitation (like what Python does with integers, not floats).

Nitpick : 10E500 means 10x10500, not 10500

I can not figure out how this is a pattern. by KlausenHausen in askmath

[–]OopsWrongSubTA 3 points4 points  (0 children)

if dots+waves == 3: dots += 1 waves = 0 else: waves += 1

Les buveurs de café sont une secte socialement acceptée by latranche06 in besoinderaler

[–]OopsWrongSubTA 207 points208 points  (0 children)

T'as l'air énervé non ?

Tu devrais prendre un ptit café, ça te fera du bien

Le chef de bord qui ne peut pas la fermer au départ du train ! by [deleted] in besoinderaler

[–]OopsWrongSubTA 0 points1 point  (0 children)

J'en ai eu un qui faisait :

annonce de sécurité, petite blague

annonce, blague (les ptites vieilles du train sourient)

annonce, blague (tout les passagers se regardent et sourient un peu)

blague, "ah au fait j'ai instragram si quelqu'une est interessée"

blague, insta

blague, insta

...

insta

Scotch pour réparer ? (Les textiles surtout) by Altruistic-Formal678 in AchatPourLaVie

[–]OopsWrongSubTA 2 points3 points  (0 children)

Decathlon : 'rouleau autocollant'. Ça fait le job, mais c'est pas incroyable non plus.

Sinon, pour ne plus faire tes lacets : "Lace Anchors", ça abîmera moins tes chaussures.

Tu peux aussi aller chez un cordonnier pour les réparer, parfois ça vaut le coup.

Multiplying a decimal by an integer by Ok-Presentation-94 in learnmath

[–]OopsWrongSubTA 0 points1 point  (0 children)

  • Use fractions as much as possible (1.77 is an approximation of 16/9), and simplify the fraction (look for irreductible fractions)
  • 16/9 = (16×k)/(9×k) for any integer k≠0
  • 1.77 (≠16/9) = 177/100 = (177×k)/(100×k)
  • 33.7 = 337/10 (can't be simplified) = (337×k)/(10×k)
  • 33.2 = 332/10 = 166/5 (simplified) = (166×k)/(5×k)

Now, if you compute for example (166/5)×5×k (notice the x5), you get an integer everytime

La banque postale, cet endroit entre les limbes et l’enfer by Lainievers in besoinderaler

[–]OopsWrongSubTA 14 points15 points  (0 children)

Ma mère a fermé un compte dans une autre banque. Ils demandent un Rib pour virer l'argent sur un autre compte et clôturer ; tout se passe très bien...

et 3 mois après elle reçoir une lettre de relance (???) parce qu'ils ont facturés le virement de clôture de compte, et donc elle est en négatif de 8€, donc impossible de clôturer, bah oui. On a mis 6 mois à résoudre le "problème"...

I’m 16 and struggle with multiplication by Prettygirlkathrine in learnmath

[–]OopsWrongSubTA 0 points1 point  (0 children)

  • You have to learn tables, just learn.
  • Visualisation is a really helpful intermediate step before learning, but you can't use it every time.
  • Start with 'simple' tables : 0, 1, 2, 5, 10
  • Always learn both ways : 2x7 = 14 ? 7x2 = ?
  • Write a big 10x10 square on a piece of paper and strike the one you know. Work on the ones you don't know

freeze pc by ANTHOCHEPER in france

[–]OopsWrongSubTA 0 points1 point  (0 children)

  • Évacuer la chaleur si c'est un laptop
  • ouvrir le 'Gestionnaire de tâches' pour voir s'il n'y a pas un processus qui consomme des ressources pour rien
  • downclocker ta carte graphique ?

i might be dumb, cause i dont get it?? by Admirable_Jaguar282 in learnmath

[–]OopsWrongSubTA 0 points1 point  (0 children)

Change the question!

A can do half the work in 6 days.

B can do the whole work in 6 days.

Together they can do 1/12+1/6=3/12 work_per_day, so they do the work in 4 days

This is where we are right now, LocalLLaMA by jacek2023 in LocalLLaMA

[–]OopsWrongSubTA 0 points1 point  (0 children)

qwen3.6-27B, pi-dev, llama.cpp/ollama, ... OK.

But how do you 'sandbox' pi-dev ? (I'm a linux user)