berkeman
Admin
- 69,236
- 24,365
Based on a recent post of mine: "What kind of integration is Berezin integration?"jack action said:
DaveC426913 said:I'm running errands for a friend's party in Owen Sound.
I'm at 16th Ave and 16th St, where they cross.
Do I tell her I'm at 1/8th Or 1/256th?
You ran a code for this?DaveC426913 said:
4! and 5! were both correct.pines-demon said:You ran a code for this?
But the sentences are missing a period at the end. Or may be an exclamation mark!Borg said:4! and 5! were both correct.
pines-demon said:You ran a code for this?

This is the math thread, not the english punctuation thread.martinbn said:But the sentences are missing a period at the end. Or may be an exclamation mark!
martinbn said:But the sentences are missing a period at the end. Or may be an exclamation mark!
I was wondering if we could find more examples of ##n-m/k = p!## for ##n,m,k,p\in\mathbb{N}##.DaveC426913 said:![]()
They also need to satisfy ##(n-m)/k=p## for the gag to work.pines-demon said:I was wondering if we could find more examples of ##n-m/k = p!## for ##n,m,k,p\in\mathbb{N}##.
Are you telling me that it can be read in two ways?! (sarcasm)Ibix said:They also need to satisfy ##(n-m)/k=p## for the gag to work.
Momentary humour detector failure, sorry.pines-demon said:Are you telling me that it can be read in two ways?! (sarcasm)
import math
def find_joke_solutions(max_d, max_val):
solutions = []
for d in range(3, max_d + 1):
fact=math.factorial(d)
for c in range(2, fact//d): # ensure c != 1
for bi in range(1,max_val//c+1):
b=bi*c
# first equation: a = c*d + b
a = c * d + b
# second equation: a - (b/c) == fact
if a - (b / c) == fact:
solutions.append((a, b, c, d))
return solutions
There was another raptor hiding in the bushes, just like in the film.BillTre said:Shouldn't it be veloci (raptors cancel)?
Shirley, that must be from the move Airplane.WWGD said:I met a girl named Shirly, which is almost surely Shirley.
Almost surely too.256bits said:Shirley, that must be from the move Airplane.