speed converge to v1+v2It can be proved (you can check my answers in "第二题:条件足够了").
Ok, I get your meaning. You are trying to discretize the problem using time slice of 1 sec, right? You can use this kind of method, although it makes problem unnecessary complex (remember not to fix the time slice, you should calculate the limit when time slice approach 0). I use this approach as well, of course, for computer programming, and the time slice is usually set to sufficiently small value to get accuracy answer.
The cause of the problem is that you set the time slice to 1 sec. During this 1 sec period, the worm moves some not negligible distance already. Using time slice of 1, the worm speed:
.01 * ( 1 + 1/n + 1/n*(n-1) + 1/ n*(n-1)*(n-2) ... )
< .01 * ( 1 + 1/n + 1/n + ... ) = .02
I.e. the method itself poses a problematic constraint on the problem.
Try set the time slice smaller.
actually
if i assume it will never reach, i can choose the upper limit of speed series as :
speed converge to v1+v2It can be proved (you can check my answers in "第二题:条件足够了").
Ok, I get your meaning. You are trying to discretize the problem using time slice of 1 sec, right? You can use this kind of method, although it makes problem unnecessary complex (remember not to fix the time slice, you should calculate the limit when time slice approach 0). I use this approach as well, of course, for computer programming, and the time slice is usually set to sufficiently small value to get accuracy answer.
The cause of the problem is that you set the time slice to 1 sec. During this 1 sec period, the worm moves some not negligible distance already. Using time slice of 1, the worm speed:
.01 * ( 1 + 1/n + 1/n*(n-1) + 1/ n*(n-1)*(n-2) ... )
< .01 * ( 1 + 1/n + 1/n + ... ) = .02
I.e. the method itself poses a problematic constraint on the problem.
Try set the time slice smaller.
i solve the integration wrongly
used solver, it didn't find another root at e^43.
so yes. finally it catched up .
the trajectory of each worm should be a whirling line. (my guess)
only A contribute to reducing distance between A,B.
so timeToMeet = 1/1 = 1 = 1/2 + 1/2 > PI/4.
hence the traveling trajectory sure break out the northwest cubicle of the big cube.
only a whirling curve meet that condition.