The average distance between points on a square

  Рет қаралды 58,807

Michael Penn

Michael Penn

Күн бұрын

Пікірлер: 270
@nschloe
@nschloe 2 жыл бұрын
For anyone wondering, the numerical value is about 0.5214
@hrayz
@hrayz 2 жыл бұрын
Thank you. I was just pulling out the calculator to find that out myself.
@olumuyiwaasaolu7674
@olumuyiwaasaolu7674 2 жыл бұрын
Makes sense when the diagonals are considered
@steveodonnell3030
@steveodonnell3030 2 жыл бұрын
That is a good place to stop.
@hrayz
@hrayz 2 жыл бұрын
@@Eianex engineering math... Like when π=e=3
@falconhawker
@falconhawker 2 жыл бұрын
@@Eianex I am an engineer . I guessed at ther answer...my guessd was 0.5
@Bodyknock
@Bodyknock 2 жыл бұрын
It is pretty funny how much more complicated the closed form of the answer is compared to what you'd expect from the layout of the problem. You would think the average distance between two points on a square would simplify down to something pretty rudimentary but instead it's got this weird sum of fractions involving the number 15 and a natural log out of seemingly nowhere.
@luckyw4ss4bi
@luckyw4ss4bi 2 жыл бұрын
I agree! It seems like a classic problem where a nice constant or solution would pop out but it's almost more interesting because of how nasty the closed form solution appears!
@TomJones-tx7pb
@TomJones-tx7pb 2 жыл бұрын
Love how he is 20 minutes in and then just jumps to the solution. Reminds me of my undergrad math professor for fluid mechanics.
@TheBrutalDoomer
@TheBrutalDoomer 2 жыл бұрын
It is interesting how adding more dimensions increases the average distance between points in a unit cube (it's a small exercise to check that for 1-dimensional cube the answer indeed is 1/3). Here is a listing of a small simulation in JavaScript (1 to 10 dimensions, 10^7 samples): dim=1: 0.3333 dim=2: 0.5215 dim=3: 0.6616 dim=4: 0.7777 dim=5: 0.8786 dim=6: 0.969 dim=7: 1.0515 dim=8: 1.1282 dim=9: 1.1999 dim=10: 1.2674 It feels like this can be attributed to the fact that with increasing dimensions, the outermost part of the unit cube takes more and more relative volume. However, the maximum possible distance √dim (diagonal) is also increasing, so these averages are likely to approach infinity, but there is one interesting thing: There seems to exist a limit of AvgDist(dim) / √dim, and it is around 0.4082 I have no idea what it means, maybe that is some known constant :D Upd: 0.4082 is pretty close to 1/√6, if that helps.
@landsgevaer
@landsgevaer 2 жыл бұрын
The fact that more dimensions increase the distance is logical, I think (for a cube), because the extra dimension can only increase the distance between points: it would only remain the same if the points have the same coordinate on that extra dimension, and can never decrease. Evaluating that constant scale factor relative to sqrt(dim) is a nice exercise though. You're essentially determining sqrt(sum(x_i^2)/N), where x_i is the difference between two uniformly distributed variates. This is the square root of the mean of that squared difference. That mean is 1/6, it turns out, so that constant is 1/sqrt(6) indeed.
@popularmisconception1
@popularmisconception1 2 жыл бұрын
It means that the average segment length is for all practical purposes directly linearly proportional to the length of the longest diagonal - AvgDist(dim) = 0.4082 * √dim, especially for high dimensions . To be more precise, the average segment distance is somewhere between cca 33.33% and 40.82% of the length of the longest diagonal, smaller for low dimensions, higher for high dimensions, but that's still pretty well bounded for a quick estimate. If you don't know the dimension, you can just use the constant and you won't be much off. It has implication for high-dimensional stochastic processes, where increasing the dimensionality of representation increases the average length between randomly generated samples or noise or average length of vectors generated using such stochastic data, which means the errors/noise is growing with dimension. If that is a problem, you can maybe stabilize it by dividing or multiplying proper stuff in the equations by square root of dimension or it's powers (e.g. second power is just dim), by which you pretty much stabilize the average length regardless of the dimensionality of representation. Your constant is not the important thing here, the practically linear proportionality of average segment and longest diagonal is.
@landsgevaer
@landsgevaer 2 жыл бұрын
@@popularmisconception1 en.m.wikipedia.org/wiki/Curse_of_dimensionality
@ekxo1126
@ekxo1126 2 жыл бұрын
prove that the answer is exatly sqrt((n-1/3)/6) where n is the number of dimensions
@ekxo1126
@ekxo1126 2 жыл бұрын
ok that's probably wrong since it isn't what he gets in the video
@Pharoom
@Pharoom 2 жыл бұрын
One interesting detail here is that if you add a third random point and examine the average area of the triangle with vertices at the points, the problem becomes much simpler. It's even possible to deduce the answer (11/144) without using integration.
@philg4116
@philg4116 2 жыл бұрын
But didn’t you need to crosscheck with the general solution?
@nanamacapagal8342
@nanamacapagal8342 Жыл бұрын
without integration? how exactly is that possible?
@gabrielevezzosi4546
@gabrielevezzosi4546 Жыл бұрын
How is possible without integration?
@user-wx8bm1pg1d
@user-wx8bm1pg1d 3 ай бұрын
How?
@samueldeandrade8535
@samueldeandrade8535 3 ай бұрын
Hahahaha. What a little troll.
@davidgillon6187
@davidgillon6187 2 жыл бұрын
The ‘editor’ still didn’t fix the limits properly!
@benheideveld4617
@benheideveld4617 2 жыл бұрын
Look at a general (orthogonal) rectangle with horizontal side x and vertical side y inside the unit square. Without loss of generality assume P to be the bottom left corner and Q the top right corner. The required distance is √(x²+ y²). The weight of this value is the wiggle room of the rectangle within the square, which is (1-x) horizontally and (1-y) vertically. The average distance between two arbitrary points becomes (with integration boundaries x,y both in [0,1]) ∫∫(1-x)(1-y)√(x²+ y²)dxdy/∫∫(1-x)(1-y)dxdy because we have to divide by the average of the weight factors.
@benheideveld4617
@benheideveld4617 2 жыл бұрын
Which on WolframAlpha gives the same answer!!
@BachelorChowFlavour
@BachelorChowFlavour 2 жыл бұрын
Excellent work! This is a better answer
@abbeleon
@abbeleon 2 жыл бұрын
Elegant!
@leif1075
@leif1075 2 жыл бұрын
Doesn't anyone agree that sub he does of y equals x tan theta shouldn't even be allowed..you don't know y will ever equal x times tangent theta..y will only.ewual x sometimes for some points..serjosuly I dknt see why anyone would.ever think of thst..why nkt just y equals tantheta and x is sec theta or cosine and sine..something sensible and more logical!!
@xulerpi
@xulerpi 2 жыл бұрын
A similar approach. If you consider the positive lengths in the whole unit square then you get 4∫∫(1-x)(1-y)√(x²+ y²)dxdy directly with the factor of 4 coming from the 4 cases (+,+), (+,-), (-,+),and (-,-) for the signs of the coord. differences.
@Skandalos
@Skandalos 2 жыл бұрын
The channel mindyourdecisions had this problem a couple of years ago. A similar problem, the average distance of two points on a circle, was presented on 3blue1brown IIRC. Interesting problems, the math is over my head but I like visualizing them using geogebra or programming.
@Boringpenguin
@Boringpenguin 2 жыл бұрын
It should be Mathemaniac who presented the circle version of the problem, he's also using manim so the style of his video is very similar to 3b1b's. Here's the link to the video series: kzbin.info/aero/PLDcSwjT2BF_XRsHboeAQ5esyUd6RdHtgC
@Skandalos
@Skandalos 2 жыл бұрын
@@Boringpenguin I found the video: it was Numberphile in collab with 3b1b. kzbin.info/www/bejne/o4ulqKaja6dlbpI
@thelightningwave
@thelightningwave 2 жыл бұрын
That was a shit video, he glossed over the hard details because he's a hack and then went fully into the hard details. I watched that video so many times and each time I hate it even more. If anyone uses that video as a template to instruct they'll be a horrible professor. He's a great example of someone that just uses the algorithm for profit.
2 жыл бұрын
@@thelightningwave Why do you keep watching it, if you hate it?
@thelightningwave
@thelightningwave 2 жыл бұрын
@ I don't. I mean I kept watching that video to understand what he was talking about, but each time I watched I just realized that it's a horrible description/explanation of the problem. It wasn't until I watched it Soo many times and when flammable maths openly mocked him that I realized that mind your decisions is just math ClickBait and doesn't really explain things in a concise manner. I watch like at most three of his videos a year. I used to gobble his videos up like the end of the world was nire.
@putputlawch6770
@putputlawch6770 2 жыл бұрын
A slight reframing: we first compute the distribution of X ~ Y ~ U(0,1) - U(0,1) ~ U(0,1) + U(-1,0) (random variable obtained by taking the difference of two independent uniforms on (0,1)) and then compute the expectation of sqrt(X² + Y²) The distribution of the difference U(0,1) - U(0,1) is the same as that of U(0,1) + U(-1,0) whose pdf is a triangle function (as convolution product of two rectangle functions) which is centered around 0. This is why we split the integral and get affine-linear terms like (1-x) and (1+x). The sqrt(X² + Y²) distribution reminds me of the chi-distribution, except that we swapped out the Gaussian random variables for our "triangle distributed" random variables X and Y, so I wonder if there's a connection between those.
@Vladimir_Pavlov
@Vladimir_Pavlov 2 жыл бұрын
When calculating the integral (starting from 13:30), it is really better to go to the polar coordinates. 4*2*∫[0;π/4]∫[0;1/cosφ] (1-r*cosφ)*(1-r*sinφ)*r^2*dr*dφ= The multiplier 2 compensates for the fact that we integrate up to π/4. and not up to π/2. =... =∫[0; π/4] [(2/3)*(1/ cosφ^3)-(2/5)*(sinφ/cosφ^4)]dφ= ln(√2 +1)/3+(2+√2)/15.
@leif1075
@leif1075 2 жыл бұрын
Yea don't you agree that substitution was INSANE and should NOT BE ALLOWED I have NEVER seen a sub where you INCLUDETHE OTHER VARIABLE in the sub..what thenfuck y equals x times tan tbeta..how and why pit x in there . I don't see why or how ANYONE would EVER think of that..come on..that shouldn't eve. Be allowed why do that..maybe y equals cosine or just tangent x...why not just that
@eyesyc
@eyesyc 2 жыл бұрын
Great calc3 refresher. Touched some points I was thinking about last night for diffforms.
@steveodonnell3030
@steveodonnell3030 2 жыл бұрын
I put the final answer in a calculator and got 0.52140543316. I ran one million simulations in excel and got 0.521539 Probably need a lot more simulations...
@StarEclipse506
@StarEclipse506 2 жыл бұрын
That's actually amazingly good considering floating point side effects.
@robshaw2639
@robshaw2639 2 жыл бұрын
with a million samples i get 0.521395184807978, and the exact value is 0.521405433164720678, so the simulation checks out
@michaelking7701
@michaelking7701 2 жыл бұрын
“So I think you can already see why this very easy to state problem is actually quite gnarly.. Okay good!”
@robwilkinson5682
@robwilkinson5682 2 жыл бұрын
great solution, and a nice little lunch break project! import math import random data=[ ] lengths = [ ] trial_number = 10^6 for n in range(2*trial_number): point = [random.uniform(0,1), random.uniform(0,1)] data.append(point) for n in range(trial_number): length = math.sqrt((data[n][0]-data[n+trial_number][0])**2 + (data[n][1]-data[n+trial_number][1])**2) lengths.append(length) average = sum(lengths) / len(lengths) print(average)
@rupen42
@rupen42 2 жыл бұрын
If you like these kinds of simulations, I recommend looking into the numpy package and its random features. This simulation can be done with: ---------- import numpy as np TRIALS = 10**6 # Make 2 arrays with random 2D points. (the default is already between 0 and 1) points1 = np.random.uniform(size=(TRIALS, 2)) points2 = np.random.uniform(size=(TRIALS, 2)) # For each pair of points, calculate the difference of their coordinates. # Example: the pair (0.2, 0.8) - (0.3, 0.5) will give (-0.1, 0.3). # You can think of this as a vector that takes you from point2 to point1. diff_vectors = points1 - points2 # Now, for each of these differences, calculate the "size" of each of those vectors. # axis=1 makes it calculate the size of *each* vector, instead of the whole matrix. distances = np.linalg.norm(diff_vectors, axis=1) print(distances.mean()) # built-in average -------- This is shorter, faster to write, more readable, can scale to higher dimensions easily and runs *much* faster. I got 40x the speed.
@tmpqtyutmpqty4733
@tmpqtyutmpqty4733 2 жыл бұрын
You won't be able to tell the exact answer from this
@rupen42
@rupen42 2 жыл бұрын
@@tmpqtyutmpqty4733 well, yes, of course. Good luck solving the 1000-D case analytically though!
2 жыл бұрын
@@lidarman2 You should start your avgdst with None, not 0.0. Zero is not a reasonable value. (And overriding all initial zeroes would even be wrong in general. Your solution can't tell whether avgdst has just not been set or whether all it currently just happens to sum to 0.) Numerically, it's better to just add all the samples, and divide them once at the end.
2 жыл бұрын
@@lidarman2 Who suggested creating the whole list? Yes, for your quick and dirty exercise, it's fine. You can keep a running count and a running sum, and at the end you divide them. No need to keep a whole list. That's simpler than working out the math like you did, and has fewer numerical problems.
@The1RandomFool
@The1RandomFool 2 жыл бұрын
At 19:37 I noticed that log((1+sqrt(1+x^2))/x) = log(1/x+sqrt((1/x)^2+1)) = arcsinh(1/x). It makes integration by parts simpler. After that, I used a tangent substitution.
@kartikchaturvedi7146
@kartikchaturvedi7146 2 жыл бұрын
why are we using a 4th dimension as a square is only within the 2 axes? kindly explain anyone
@derekpoon5308
@derekpoon5308 2 жыл бұрын
The integral sums all distances. Should we explicitly divide it over square area (although it is equal to 1) to get average?
@3x3-x3x-oXo
@3x3-x3x-oXo 2 жыл бұрын
It's defenitely there in the definition of average you are right. Expliciting it would depend on the public I guess.
@ArminVollmer
@ArminVollmer 2 жыл бұрын
Btw, the average "Manhattan distance" between two points on a unit square is 2/3.
@calcubite9298
@calcubite9298 2 жыл бұрын
I was lost by about two minutes in. Why is a four-dimensional hypercube involved? What does it even mean to integrate the distance formula? Like I understand integrating a function over some interval, and I get (I think?) that the integral(1 dxdydz)= the volume of that bounded region, but.... yeah I'm stuck.
@calcubite9298
@calcubite9298 2 жыл бұрын
I am going to go learn about Jacobian matrices as I went fully cross-eyed by 4:44.
@frotzecht3461
@frotzecht3461 2 жыл бұрын
Not that it matters in this case but your Jacobian is the wrong way round. It should have the new variables in the numerator.
@GreenMeansGOF
@GreenMeansGOF 2 жыл бұрын
You should make a video on that integral at the end with the natural log.
@bakaneko39
@bakaneko39 2 жыл бұрын
Solving this problem with Corfton formula works really nicely (easier for the average distance on a disk)
@stephenhamer8192
@stephenhamer8192 2 жыл бұрын
In case you were wondering [spoiler alert] [ ( 2 + sqrt 2 ) / 15] + [ ln (1 + sqrt 2)) / 15 ] = 0.5214 to 4 dp, so if you guessed "a half" you were close drive.google.com/file/d/1antIBxzFTw5Cfvw6nxMKLn_634byUxDA/view?usp=sharing I was slightly puzzled by the speedy intro of 4D space at the start, and by the near-absence of any mention of the probability function. We are calculating the "Expectation Value" of the distance, d(P, Q) between points P, Q of a unit-square. The distance function is a function of 4 parameters , the (x,y) co-ords of points P, Q, which can each be chosen independently in the set [0, 1]; hence a 4D probability space. OK, got that. Call this the 4D unit-cube, 4U. The required EV is then the integral over all points of 4U of prob(P, Q) x d(P, Q), where prob (P, Q) is the probability of choosing the 4 parameters of (P, Q). Since the choices are all distinct and independent, we have prob(P, Q) = 1 / total number of (P, Q)s. But what is the total number of (P, Q)s? I took me a minute to twig that the needed "counting" function is the function that "clocks" (takes the value) "1" for each choice of (P, Q), but that's just the "characteristic function", χ on 4U, which when integrated over 4U yields the "vol" of 4U (I think the Prof mentioned this) Thus prob (P, Q) = 1 / vol 4U, which is just a number which can be factored-out of our original integral; and, in fact, it's just the number 1 (which the prof also mentioned), so it, in effect, disappears Sorry, rather laboured all that
@kartiksunaad
@kartiksunaad 2 жыл бұрын
I really thought there would be a way to do this without integration, using some clever trick. By the way, you sure of your answer? I put the integral that we had at the start ( the integral of Sqrt[(x2-x1)^2+(y2-y1)^2] ) in Mathematica and it spit out this as the answer: 1/120 (16 + 8√2 + 80π - 70 Log[1 + √2] - 15 Log[2] - 40 Log[3 - 2√2] + 30 Log[2 + √2]) In particular there is a π in the answer 🤔
@random19911004
@random19911004 2 жыл бұрын
It's seems like the answer should have been much more clean, and there would be a way to get it just by arguing about symmetry, but unfortunately not
@cernejr
@cernejr 2 жыл бұрын
Approx. 0.52 ?? For the 1D problem (a unit line segment) the answer is apparently 1/3 . I like this stuff.
@teeweezeven
@teeweezeven 2 жыл бұрын
Can confirm it is 1/3. Was fun calculating that!
@lPlanetarizado
@lPlanetarizado 2 жыл бұрын
i wonde what happens if you let n tends to infinity for a "n-integral", the value converge?
@user-nb6zu3rk4f
@user-nb6zu3rk4f 2 жыл бұрын
@IPlanetarizado I’m sure it converges to 0
@ulrichs.3228
@ulrichs.3228 2 жыл бұрын
@@teeweezeven Huh, I wonder what happens with those values if we generalize to n-dimensional hypercubes. But not enough to calculate it formally, maybe I'll run a little sim.
@teeweezeven
@teeweezeven 2 жыл бұрын
@@ulrichs.3228 I mean, going from 1 to 2 dimensions already complicates things a whole lot. All I can confidently say is that as n gets bigger, the distance also gets bigger, probably tending towards infinity.
@sldimaf
@sldimaf 2 жыл бұрын
~0.521
@YellowBunny
@YellowBunny 2 жыл бұрын
I gave this a try without watching the video and thought this might be the solution: integral from 0 to 1 integral from 0 to 1 (2-x-y)*(sqrt(x^2+y^2)) dx dy But that ended up being something that I can't solve and that is equal to around 0.651757 according to WolframAlpha. I don't really know why my idea is wrong but I definitely wouldn't have tried to use a quadruple integral after already being unable to solve a double integral.
@rumbleinthejungle3358
@rumbleinthejungle3358 2 жыл бұрын
Thanks for the upload
@sharpnova2
@sharpnova2 2 жыл бұрын
jesus this is a hell of a headache of a problem. i worked it out in my own way using probability density functions and got a somewhat similar answer with nested radicals that i *think* is equivalent to your answer. but it's late and i'm too tired to prove they are the same. but it seems likely. incidentally, my method really easily extends itself to n-dimensions
2 жыл бұрын
> but it's late and i'm too tired to prove they are the same. I'd plug both of them in a calculator and see whether they agree numerically, and only if they do, start proving.
@johnchristian5027
@johnchristian5027 2 жыл бұрын
What a brilliant use of mathematics, you'd expect a simpler solution to this problem!
@ethandavis7310
@ethandavis7310 Жыл бұрын
The simple solution is just running a simulation
@natepolidoro4565
@natepolidoro4565 2 жыл бұрын
The number at the end is about 0.521405433165
@mimzim7141
@mimzim7141 2 жыл бұрын
could do a discret version with an nxn lattice and compute all the distances. then increase n and see if it converges towards your value.
@phee4174
@phee4174 2 жыл бұрын
8:54 I'm confused why are the bounds of the third integral sign thingy 0 to -1, shouldn't they be 0 to 1 as those are the values x is ranging between in the purple triangle?
@RecreationallyCynical
@RecreationallyCynical 2 жыл бұрын
I think you're right. The bounds should be 0 to 1. On the next board Michael corrected the bounds on the second integral and said the editor will fix it in post for the previous board. I think maybe the editor thought both needed correction.
@digxx
@digxx 2 жыл бұрын
The integral is actually Int_{-1}^0 dx Int_{-x}^1 dz + Int_0^1 dx Int_0^{1-x} dz = Int_{-1}^0 dx (1+x) + Int_0^1 dx (1-x) = 2*Int_0^1 dx (1-x) upon change of variables x->-x in the first integral.
@alexandresoutonogueira7675
@alexandresoutonogueira7675 2 жыл бұрын
#ruby 2.5.3 def dist ((rand()-rand())**2.0+(rand()-rand())**2.0)**0.5 end size = 1000.0 v = [] 1000.times do v
@ethandavis7310
@ethandavis7310 Жыл бұрын
Approximated the answer numerically with about 30 seconds of writing a python script
@hel13ay
@hel13ay 6 ай бұрын
Please, make the video for derivation of Probability of distance between two points being less than x.
@leif1075
@leif1075 2 жыл бұрын
I'm sorry y equals x tan theta is even a Valid substitution..you don't know if y will.ever equal x times tangent theta because x is a point in the square but some dummy variable..
@MurshidIslam
@MurshidIslam 2 жыл бұрын
Why is the average distance = ithe ntegral of the distance formula over all possible P and Q divided by the 4D volume of the unit cube?
@Patapom3
@Patapom3 2 жыл бұрын
At one point you pose y=x tan(theta), like... you can really do that??? Use another variable as substitute for a variable? 🤯
@werquast
@werquast 2 жыл бұрын
I think this was your best video so far!
@ludomine7746
@ludomine7746 Жыл бұрын
tried doing it with expectation of uniform random variables, got that the distance squared is expected to be 1, which i suspect is also wrong😅
@grandmartinvandam
@grandmartinvandam 2 жыл бұрын
0.57 ish? The farthest apart they could be is about 1.41... seems reasonable.
@nibn4r
@nibn4r 2 жыл бұрын
So what is the final answer? Something to compare to the intuitive guesses we all made at the start. Something close to 0.5 I think?
@falconhawker
@falconhawker 2 жыл бұрын
Even by intuition 2 point on a diagonal will cause the final average to EXCEED 0.5 , so intuition should say the avg must be >0.5
@coreyyanofsky
@coreyyanofsky 2 жыл бұрын
being a statistician i'd have done it with probability theory: - the components of P and Q are IID uniform - the absolute difference of two uniform RVs is a triangle distribution - squaring is a change of variables - summing two such RVs is convolution, probably not tractable so we leave it as is - law of the unconscious statistician turns this into a double integral, even more ugly but the fact that this video exists at all indicates it's tractable
@3x3-x3x-oXo
@3x3-x3x-oXo 2 жыл бұрын
You'd end up with the exact same computations in the end.
@coreyyanofsky
@coreyyanofsky 2 жыл бұрын
​@@3x3-x3x-oXo yes, it's exactly the same in the end; the point of the comment is that probability theory provides conceptual chunks that get you to the final integral faster, e.g., it makes it clear that you can handle the two dimensions separately so you don't have to write down a quadruple integral
@ddiq47
@ddiq47 2 жыл бұрын
It's nice to be able to find a closed form solution for this, but monte carlo sims got me 3 sig fig accuracy very fast
@cicik57
@cicik57 2 жыл бұрын
maybe there can be some geometrical trick to calculate it easier?
@josephmartos
@josephmartos 2 жыл бұрын
Can pls some1 explain why the expected value has that 4dim volume cube thing?
2 жыл бұрын
Michael explains it in the video?
@leif1075
@leif1075 2 жыл бұрын
Why not just write x1 minus x2 as delta x and the difference in y as delta y then it becomes a much easier 2d integral?
2 жыл бұрын
That's more or less what he's doing in a roundabout way in the video.
@BethKjos
@BethKjos 2 жыл бұрын
Gee this problem is getting tedious; let me just apply the Feynman method.
@eldarallakhverdiiev2211
@eldarallakhverdiiev2211 2 жыл бұрын
it can go much easier if using polar coordinate system instead of rectangular, can't it?
@romajimamulo
@romajimamulo 2 жыл бұрын
On one level yes, but your boundaries become really awkward and difficult to work with
@lucachiesura5191
@lucachiesura5191 2 жыл бұрын
Something about the universal parabolic constant...good
@spoolster64
@spoolster64 2 жыл бұрын
Thank you! I was trying to remember where I saw ln(1+sqrt(2)) before xD
@binaryblade2
@binaryblade2 Ай бұрын
Now show how that varies with a p-adic metric
@Allyballybean
@Allyballybean 9 күн бұрын
I admit I was lost at 4 minutes.
@TheOnlyAndreySotnikov
@TheOnlyAndreySotnikov Жыл бұрын
Can we generalize it for an arbitrary dimension n?
@toes161616
@toes161616 2 жыл бұрын
The answer almost looks like the golden ratio
@AndrejPanjkov
@AndrejPanjkov 2 жыл бұрын
Michael's result is about 0.52. Are there bounds we can put on the result before we work out the integrals? Certainly the average is in (0,sqrt(2)).
@alexpotts6520
@alexpotts6520 2 жыл бұрын
It's very quick to work out that the result is exactly 1/3 in one dimension, and then using the triangle inequality gives you an upper bound of n/3 in n dimensions.
2 жыл бұрын
You can use en.wikipedia.org/wiki/HM-GM-AM-QM_inequalities for some bounds. Or more generally, artofproblemsolving.com/wiki/index.php/Power_Mean_Inequality
@dobridimitrov6688
@dobridimitrov6688 2 жыл бұрын
so the average distance is ~ 0.5214... does it mean that: the chance of random distance being > 0.5 is more than 50%?
@Vladimir_Pavlov
@Vladimir_Pavlov 2 жыл бұрын
Based only on the average value (Expected value) of a random variable, it is impossible to draw a conclusion about the distribution of probabilities of its values. Nevertheless, in this case P[sqrt(x^2+y^2)>1/2] =125/96 - π/4 =0.517...
@falconhawker
@falconhawker 2 жыл бұрын
the distance of 2 points on a diagonal when x,y exceed 0.5
@nixlarfs1002
@nixlarfs1002 Жыл бұрын
Now do this with Manhattan distance:)
@schweinmachtbree1013
@schweinmachtbree1013 2 жыл бұрын
I think a hyperbolic substitution might be cleaner than the trigonometric substitution
@leif1075
@leif1075 2 жыл бұрын
I don't see why anyone would.think of x tan theta.is thst even allowed you dot know that y will ever equal x tsn theta since x is a point in the square. So yea thinking about it morenkw.i ealize that is not a valid substitution
@plislegalineu3005
@plislegalineu3005 Жыл бұрын
*the editor corrected the wrong thing*
@2kreskimatmy
@2kreskimatmy 6 ай бұрын
but why 4 dimensions
@Fine_Mouche
@Fine_Mouche 2 жыл бұрын
min distance = 0, max istance = sqrt(2) ~1.4142, the average distance = (2 + sqrt(2) / 15) + ln(1 + sqrt(2)) / 3 ~ 0,521405
@PunmasterSTP
@PunmasterSTP 2 жыл бұрын
Damn. That's really all I can say.
@frentz7
@frentz7 2 жыл бұрын
Jacobian is there, because an ordinary "substitution" such as u = 3x will "inflate" the region by a factor of 3 .. and so the same quantity (such as 9x^2 + 7, or aka u^2 + 7) placed into a new domain (such as u : 0 to 30, instead of x : 0 to 10) ... well it just aint right. Without some sort of Jacobian factor (such as a 1/3 = dx/du). Otherwise you're getting your quantity accumulated across three times as much territory ...
@aidanokeeffe7928
@aidanokeeffe7928 2 жыл бұрын
Now the variance please
@Vladimir_Pavlov
@Vladimir_Pavlov 2 жыл бұрын
Some knowledge from probability theory allows to carry out transformations 4-dimensional integral to two-dimensional faster. A random variable A is the difference between two independent random variables x1 and x2, uniformly distributed over the interval [0,1] : A=x1-x2. Its distribution density is constructed as a convolution of the distribution densities x1 and x2. Result: pA(x)=1-∣x∣ if x∈[-1,1] ;pA(x)=0 if x∉[-1,1]. The same result for the distribution density pB(y) of a random variable B=y1-y2. According to the average calculation rule: Avg=∫[-1,1]∫[-1,1] sqrt(x^2+y^2)*pA(x)*pB(y)dy*dx= =4∫[0,1]∫[0,1] sqrt (x^2 +y^2)*(1-x)*(1-y)dy*dx. It is clear that for an n-dimensional unit cube, calculations can be performed using the formula Avg=2^n*∫[0,1]∫[0,1]∫[0,1]...... (1- x)*(1-y)*(1-z)......*sqrt (x^2+y^2+z^2......)dx*dy*dz....
@lPlanetarizado
@lPlanetarizado 2 жыл бұрын
do you know how to prove that it diverge for n->inf? i have been thinking and i cant do it
@Vladimir_Pavlov
@Vladimir_Pavlov 2 жыл бұрын
@@lPlanetarizado Avg(n)= 2^n*∫[0;1]...∫[0;1](1-t(1))*...(1-t(n))*sqrt [t(1)^2+...+t(n)^2]dt(1)*...dt(n). (1) The inequality about the arithmetic mean and geometric mean gives [ t(1)^2 +...t(n)^2]/n ≥[t(1)^2*...*t(n)^2]^(1/n)=[t(1)*...*t(n)]^(2/n). So sqrt [t(1)^2+...+t(n)^2]≥ sqrt(n)*[t(1)*...*t(n)]^(1/n). (2) Of (1) and (2) Avg(n) ≥(2^n)*sqrt(n)*{∫[0;1] (1- z)*z^(1/n) dz}^n=... ...= (2^n)*sqrt(n)*{1/(1/n +1)- 1/(1/n +2)}^n = = (2^n)*sqrt(n)*{n^2/[(n+1)*(2n+1)]^n = =sqrt (n)/[(1+1/n)^n*(1+1/2*n)^n] It turns out that for n ≫1 Avg(n)≥sqrt(n)/[e*sqrt(e)]=sqrt(n/e^3). The estimate is rough, but shows that Avg(n) is proportional to sqrt(n).
2 жыл бұрын
@@lPlanetarizado You can use en.wikipedia.org/wiki/HM-GM-AM-QM_inequalities to prove divergence in the original formulation. You don't need to solve the problem to a closed form to prove divergence.
@lPlanetarizado
@lPlanetarizado 2 жыл бұрын
@ i see ....i knew there has to be an easier way...i tried the integral - just for fun- with spherical coordinate substitution, but you get a complicated expression too
@simonwillover4175
@simonwillover4175 2 жыл бұрын
Does michael have a calc 3 course play list? Im sorry but i havent done calc 3 (just 1 and 2) so I don't know where he's getting these conclusions from.
@groa4
@groa4 2 жыл бұрын
Would there be a problem with finding the average of the square of the distance to simplify the integration and then come back and get the actual average distance?
@diffusegd
@diffusegd 2 жыл бұрын
Fun fact: the average distance between 2 points in a unit cube also has a closed form, and yes, you do get 6 nested integrals. I don't know whether there's a closed form for 4+ dimensions
@ranshen1486
@ranshen1486 2 жыл бұрын
(1) What is the average distance of 2 points on the edges of a unit square? (2) How does the ratio of question (1) to the original average in the video change as dimension grows towards infinity?
@Fine_Mouche
@Fine_Mouche 2 жыл бұрын
In a cube ? in a N-cube ?
@johnalley8397
@johnalley8397 2 жыл бұрын
And I thought the 4D quadruple integral was the tricksie bit! NOPE!
@mokouf3
@mokouf3 Жыл бұрын
I remember that one other math channel posted same question, but using a little bit different concept about probability density function in the middle.
@samlsne
@samlsne 2 жыл бұрын
Using conditional probability makes the problem easy
@MrEliteXXL
@MrEliteXXL 2 жыл бұрын
I'm overwhelmed
@colincolenso
@colincolenso 2 жыл бұрын
By geometrical estimation, I would have guessed the average distance of any two points is somewhere between ([1/2 of root 2 on 4] and [1/2 of 1/2]) = 0.35355 and 0.25, with less weight to the 0.25 due to geometry. As the answer is 1/3, the weighting of the lesser number 0.2022... 0.00833 (differential) the weighting is about 0.412 or 1 in 2.426.
@mansoormohamedali
@mansoormohamedali 2 жыл бұрын
Hello Mr. Penn. I have a question that has been keeping me all night these past few days. Hope you can help. Question: Let have any area on earth ( a city or a region). That we can calculate or know its area. We have n (a natural number) number of fixed spot we can put on the area.How can we calculate the minimal distance we can place n number of fixed spot such that we have the same distance between any point on the edge of the boundary to the next fixed spot or from fixed spot to fixed spot. For example: if we have n =1, so the only logical place to put the fixed point is at the center. From the the center ( fixed spot) to any point in the boundary are the same distance. What is the reasoning in the case n = 2,or n = 3, … n = inf?
@rozpiotr
@rozpiotr 2 жыл бұрын
craziness 🙃
@MrCoffeypaul
@MrCoffeypaul 2 жыл бұрын
I like lamb.
@byronwilliams7977
@byronwilliams7977 2 жыл бұрын
I saw this on Presh Talwalker's channel a while back, loved it then, still love it now.
@BachelorChowFlavour
@BachelorChowFlavour 2 жыл бұрын
A bit disappointing that a clever trick could not be found...
@AndrejPanjkov
@AndrejPanjkov 2 жыл бұрын
some simpler problems: = average distance between a point and all points on a line segment = average distance between points on two line segments
@joeo3377
@joeo3377 2 жыл бұрын
It's been a while since I did an integral this involved, but when you did the change of variables y = xtanθ, why isn't the differential that results xsec²θdθ+tanθdx? Don't the differentials follow a Leibniz rule?
@quintonpierre
@quintonpierre 2 жыл бұрын
What about if the sides of the unit square are connected in a pacman like manner ?
@stomio1164
@stomio1164 2 жыл бұрын
I think this exsample shows how it is different between the simplicity for human understanding and world of math. math is made in order to solve many human-like problems easier, but as always, we can’t produce a “perfect” tool. Maybe we have to be super-surprised of the fact that this easy method is so versatile.
@1.4142
@1.4142 2 жыл бұрын
Presh did this
@natepolidoro4565
@natepolidoro4565 2 жыл бұрын
2:17 lol
@Wielorybkek
@Wielorybkek 2 жыл бұрын
Now what happens when we use different metrics? :D
@christopherdyson1158
@christopherdyson1158 2 жыл бұрын
Seeing the thumbnail I interpreted the question different, but it seems like it might still be interesting... for two specified points what is the average path length between the two... which I feel like will just be infinite, so maybe add the restrictions that the path must not cross itself and has a certain width.
@SuperYoonHo
@SuperYoonHo 2 жыл бұрын
Awesome sir!!!
@farfa2937
@farfa2937 2 жыл бұрын
Really interesting problem, tho it's quite the L that the result is not a cute number like 1/4 or something like that.
@herbertschulz4713
@herbertschulz4713 2 жыл бұрын
Do you get the same result in a polar coordinate system? (Random variable with phi,r)
@robertholder
@robertholder 2 жыл бұрын
In the easy to ask, but surprisingly tricky category: If rolling a die 100 times, what is the probability of getting five in a row of the same number at least once? Was helping a student with that, and there are some subtle traps to fall into.
@lucasm4299
@lucasm4299 2 жыл бұрын
Instead solve: what is the probability of never getting five in a row of the same number in 100 rolls?
@robertholder
@robertholder 2 жыл бұрын
@@lucasm4299 Yes, the student got that far. The tricky part comes with managing the dependencies between rolls and the windows of five rolls.
@daaa2299
@daaa2299 2 жыл бұрын
Isn't it somehow related to bertrand paradox? We can't say that every point has the same probability of appearing if we are talking about infinite sets, we need some probability distribution
@trustnoone81
@trustnoone81 2 жыл бұрын
Whenever I see a problem that starts with "choose two points at random in this 2D region" I hear bells and whistles going on somewhere in my subconscious.
@eu7059
@eu7059 2 жыл бұрын
Assume uniform distribution
@replicaacliper
@replicaacliper 2 жыл бұрын
No not really, a uniform distribution over the square is the really only natural "random" distribution for a point. Bertrand's paradox is more about situations where the probability distribution is ambiguous. Multivariate continuous distributions exist and there is no issues with doing statistics with them.
@mrpenguin815
@mrpenguin815 2 жыл бұрын
It probably should state the distribution, but if its not then I think it's safe to assume it is uniform. HW: solve for all cases of the beta distribution in terms of parameters a and b.
@farfa2937
@farfa2937 2 жыл бұрын
You'd think if he had a non-uniform distribution he'd have said it. The most "natural" thing to do is assume uniformity, since he didn't say (for example) "this corner of the square has more points than the others".
@DividingLimits
@DividingLimits 2 жыл бұрын
Layman person computer programmer here. Given two tuples (Cartesian points- x1,y1, x2,y2), what’s the algorithm I can implement in code? I didn’t follow the simplification and all of the substitutions. The final values do not seem to link back to the original inputs at all.
@3x3-x3x-oXo
@3x3-x3x-oXo 2 жыл бұрын
In code you want to compute the average value over many random experiments (where x1, x_2, y_1,y_2 are random floats between 0 and 1) of the value sqrt((x_1-x_2)^2 + (y_1,y_2)^2). So it's a simple for loop. What he computes is the expectation, that is the idealized average where the number of trials becomes infinite.
@jerry3790
@jerry3790 2 жыл бұрын
I came up with a solution to this problem that ended up being incorrect, but I’m still not entirely sure what is fundamentally wrong with it. It is well known that the average distance between two points on a line of length 1 is 1/3. Therefore the expected values for (x1-x2) and (y1-y2) should also be 1/3. Plugging this into the distance formula gives a result of sqrt2/3
@bscutajar
@bscutajar 2 жыл бұрын
That's because in general avg(F(x,y)) is not equal to F(avg(x),avg(y)). In fact that is a very wrong assumption in most cases. Take for example kill death ratios of a videogame scoreboard. The average kill death ratio is not necessarily 1, but the ratio of average kills and average deaths is always necessarily 1, since kills=deaths.
@byronwatkins2565
@byronwatkins2565 2 жыл бұрын
Did you multiply by 4? This result looks a bit small...
@indocesare14
@indocesare14 2 жыл бұрын
It can be interesting to ask the same question for a square with non-constant density. Depending on the density function there should be parts of the square with "more points" than others, so the average distance should change. However analytically solving the integral may really become challenging if not impossible
Finding the closed form for a double factorial sum
17:13
Michael Penn
Рет қаралды 54 М.
A deceivingly difficult differential equation
16:52
Michael Penn
Рет қаралды 248 М.
Bike Vs Tricycle Fast Challenge
00:43
Russo
Рет қаралды 102 МЛН
The Distance Between Numbers - Numberphile
21:34
Numberphile
Рет қаралды 282 М.
Researchers thought this was a bug (Borwein integrals)
17:26
3Blue1Brown
Рет қаралды 3,6 МЛН
An Exact Formula for the Primes: Willans' Formula
14:47
Eric Rowland
Рет қаралды 1,4 МЛН
a nice relation between the two most famous mathematical constants.
14:03
A creative trig problem
11:24
Michael Penn
Рет қаралды 33 М.
Can you solve this "old-style" problem from 1986?
16:25
Michael Penn
Рет қаралды 45 М.
The weirdest paradox in statistics (and machine learning)
21:44
Mathemaniac
Рет қаралды 1 МЛН
Apostol's Solution to the Basel Problem
13:37
Michael Penn
Рет қаралды 35 М.
a nice non-linear recursion problem
14:56
Michael Penn
Рет қаралды 20 М.