The Altera Centauri collection has been brought up to date by Darsnan. It comprises every decent scenario he's been able to find anywhere on the web, going back over 20 years.
25 themes/skins/styles are now available to members. Check the select drop-down at the bottom-left of each page.
Call To Power 2 Cradle 3+ mod in progress: https://apolyton.net/forum/other-games/call-to-power-2/ctp2-creation/9437883-making-cradle-3-fully-compatible-with-the-apolyton-edition
If it's all a and all b, you could simply insert any a and any b into the assumption, and you have your proof.
You have a circle of radius 1 in which is enclosed a parabola. Is it possible for the parabola's arc to be longer than 4?
Where c: [0, 2pi] -> R^2 and c(t) = (cost, sint)
Arc Length of circle =
[integral]{over circle}||c'(t)||dt
= [integral]{0, 2pi}dt = 2pi
p[-i, i] -> R^2 and p(t) = (t, ct^2)
Maximize arc length
d([integral]{i, f}(1 + 2ct^2)^.5 dt)/dc = 0
(i^2 + ci^4) = 1
i^2(c + i^2) = 1
ermmm..
*solve for i*
d([integral]{-i(c), i(c)}(1 + 2ct^2)^.5 dt)/dc = 0
*do math*
c = some constant c1
So if [integral]{-i(c), i(c)}(1 + 2(c1)t^2)^.5 dt <= 4, you've got your answer.
"Beware of the man who works hard to learn something, learns it, and finds himself no wiser than before. He is full of murderous resentment of people who are ignorant without having come by their ignorance the hard way. "
-Bokonon
We see that for all n&N (natural numbers), (n^2-n)lessthanNlessthan(n^2+n) gives {N} = n (simple enough to prove...just compare to (n-.5)^2 and (n+.5)^2 and convince yourself that the boundaries don't ever cross form one natural number to the next)
So, each n has 2n N's associated with it (if you catch my meaning), and if you stare hard enough at the first 15 or so terms, you can see that we can rewrite the summation as a double summation, with the inside summations each having 2^(n+1) terms...
Anyhoo, this starts to get a bit nasty, and since I'm typing this, I'll just state what happens when you collapse the first summation:
sum from n=1 to infinity of (2-n^2+2n+2-n^2)*(1-2-2^n)
This is sort of disgusting in itself. I'll come back when I'm able to evaluate it.
"Beware of the man who works hard to learn something, learns it, and finds himself no wiser than before. He is full of murderous resentment of people who are ignorant without having come by their ignorance the hard way. "
-Bokonon
Here's a problem from my Comp Sci class. I've asked most of the math and comp sci professors here if they knew how to solve it, but no dice.
The @ function is the floor function: chop a positive number's decimal value to produce an integer.
Given the recursive relation:
A[0] = 0; A[1] = 0; A[2] = 1;
A[N] = A[@(N/2)] + R[@(N/2), @(N/2)+1];
R[0,U] = A[U]; R[S,0] = 0;
R[S,U] = U + (R[@(N/2),@(U/2)] + [sum from i = 0 to @(U/2) : 2 * R[@(S/2), U - i]]) / U;
For N approaches infinity, what does A[N] equal in terms of N? What does A[N] equal in terms only of N (not of A[N] or R[S,U])?
I've written a computer program to determine the answer, and running it for up to N = 64 it appears that A[N] is converging to N*log2(N), where log2 is log base 2. However, I can't test the problem any higher than around N = 64 because the recursive algorithm runs in exponential time; A[75] would take hours to compute, A[100] days or weeks, A[1000] might run until the end of time.
The background behind the problem is in relation to a sorting algorithm that I've come up with, where A[N] gives the algorithm's average case. I had to present the algorithm the other day, but couldn't say what the average case was other than "it looks like it's approaching N*log2(N), but I can't really say for certain since I've only tested it up to N=64."
<p style="font-size:1024px">HTML is disabled in signatures </p>
Originally posted by KrazyHorse
1 + 2*sumn=1 to infinity2^(-n)
As this is much easier to evaluate, I'll do so:
3
Dammit. I knew the answer had to be three because it was converging there, but I spent an hour trying to turn the sum of the series into something possible to solve. (It wasn't really wasted time, though, since I finished the second part of the exam an hour early by virtue of the fact that I only turned in three of the six problems.)
<p style="font-size:1024px">HTML is disabled in signatures </p>
Comment