in calculating the area of a circle in a square we use random points to calculate the fraction of circle! but why we dont assume a simple grid and put our points in the center of it. this seems more uniform and the result should be better.
2026-03-26 01:02:38.1774486958
why monte carlo method use random sampling? and not a specific numbers?
564 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in RANDOM
- Prove that central limit theorem Is applicable to a new sequence
- Generating random versions of cubic and quadratic curve
- Is product of random numbers still random?
- Can I generate a random number with the probability distribution of the area under any arbitrary function?
- Average distance from a line to a point
- When does two random measures coincide in distribution?
- Determine the maximum period of this potential random number generator, if possible
- Does a random variable come from a probability distribution or is it vice-versa?
- Expected number of operations until matrix contains no zeros.
- Mean and Variance of Random Sum of Random Variables
Related Questions in MONTE-CARLO
- Computing admissible integers for the Atanassov-Halton sequence
- Disturbing MATLAB Accuracy in Monte Carlo Simulation
- Choosing a random solution among infinite solutions of a linear system
- How to use Monte Carlo integration on a linear combination of f(x)?
- Monte Carlo Approximation of $\int_0^1\int_0^x x^2y dy dx$
- Give two algorithms for generating a random variable.
- When can the collapsed Gibbs sampling be applied?
- How to solve differential equations (ODE) using Monte Carlo methods?
- Random Numbers - the most common Value of $(x_1^2+y_1^2+...+x_N^2+y_N^2)/N$
- Numerical integration of triple integral
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
When you are doing one-dimensional integration, you are right. It is often more efficient to use a grid of evenly spaced points in the interval of integration. (There are a few periodic functions and other special cases in which the Monte Carlo method with randomly chosen points is better in one dimension.)
However, in multiple dimensions the Monte Carlo approach is very often better. Suppose you want to integrate an uncorrelated standard bivariate normal distribution (means 0, SDs 1, correlation 0) over the triangle $T$ with vertices at $(0,0), (0,1), (1,0).$ If you try to use a 2-dimensional grid of points that serve as the centers of bases of 'posts' that extend from the plane upward to the surface of the density, you will not only have 'raggedy' edges where the posts meet the density surface, you will also have raggedy edges along the hypotenuse of the triangle. You will need very many grid points to get a good approximation.
However, if you generate points uniformly at random within the triangle, you will do about as well or better with the same number of points in a grid. The random points are 'unpredictable' but they fit nicely into the triangle.
Example: In the following simulation in R statistical software, $m = 1000$ points are generated in the unit square, of which about 500 within the triangle $T$ are used. For $(X,Y)$ distributed according to this bivariate normal distribution, $P[(X,Y)\in T]$ is approximated as 0.06776, whereas one can show by a geometric argument that this particular probability is exactly 0.06773.
Integrating over regions of dimension greater than two, the raggedy hyper-edges proliferate if you use a multi-dimensional grid. Then the Monte Carlo method is almost always better than a grid.
That said, it must be admitted that one can always contrive multi-dimensional integrations for which a regular grid happens to work best. Just as you can contrive one-dimensional functions for which the Monte Carlo method works best. Factors include the 'smoothness' of the function and the 'smoothness' of the boundaries of the region of integration.