Forgot password? New user? Sign up
Existing user? Log in
Let Gn be the expected value of the geometric mean of n real numbers independently and randomly chosen between 0 and 1.
What is n→∞limGn?
Are you sure you want to view the solution?
Brilli the ant is standing on a face of a regular icosahedron. He wants to walk on every other face of the icosahedron exactly once, and then, in the next move, walk back to the face that he started from. How many ways are there for Brilli to do this?
Details and Assumptions: Brilli starts on a fixed face on the icosahedron. Brilli will not walk along edges; he will only walk on an edge to cross to another face. You may find it useful to use the code environment below, which contains a dictionary that encodes the three faces adjacent to each face.
adjacencies = { 1 : [7, 13, 19], 2 : [12, 18, 20], 3 : [16, 17, 19], 4 : [11, 14, 18], 5 : [13, 15, 18], 6 : [9, 14, 16], 7 : [1, 15, 17], 8 : [10, 16, 20], 9 : [6, 11, 19], 10 : [8, 12, 17], 11 : [4, 9, 13], 12 : [2, 10, 15], 13 : [1, 5, 11], 14 : [4, 6, 20], 15 : [5, 7, 12], 16 : [3, 6, 8], 17 : [3, 7, 10], 18 : [2, 4, 5], 19 : [1, 3, 9], 20 : [2, 8, 14] }
Are you sure you want to view the solution?
The sphere is just barely submerged in water.
Find the ratio of the hydrostatic force upon the bottom half of the sphere to the hydrostatic force upon the top half of the sphere.
Details and Assumptions:
Are you sure you want to view the solution?
f(x)=⎩⎪⎨⎪⎧0+β : ⌊x⌋≡0mod31+β : ⌊x⌋≡1mod32+β : ⌊x⌋≡2mod3
There is a unique value of β such that n=1∑∞3nf(3n2017)=0. This value of β can be expressed as a−bc, where a, b, and c are positive integers and c is square-free. Find a+b+c.
Are you sure you want to view the solution?
N particles with electric charge q are placed on a unit sphere at random. They repel each other and relax toward an equilibrium configuration as their motion damps away.
In the code box below, design an algorithm that computes the potential energy of the equilibrium.
Details & Code:
U(listofPoints)
takes a list of NumPy
arrays containing the position vectors of each of the N charges, and returns the total potential energy i=1∑Nj>i∑Nrij1.1 2 3 4 5 6 7 8 9 10 11 |
|
import numpy
Are you sure you want to view the solution?
Problem Loading...
Note Loading...
Set Loading...