Structure and Interpretation of Classical Mechanics
.
1. The local-tuple function is the same as the local-tuple function
where
.
2. On the other hand, the path function and the path function
are not necessarily the same. Explain.
…
~~~
1. …
To summarize:
In theory where a series can have infinite terms, functions and
are identical because it is just the definition of
.
In practice where a series can have only finite terms, they are still identical because their inputs are the same exact local tuples.
2. However, for and
, although they are both path functions with the same path
as input, while the function
processes the path
directly, the function
would first turn the path
into a local tuple
, which in practice would have only a finite number of components.
(define ((GammaBar-fBar-o-Gamma f-bar) q) (compose (Gamma-bar f-bar) (Gamma q)))
Then it would use the function osculating-path to generate the path.
(define ((Gamma-bar f-bar) local) ((f-bar (osculating-path local)) (time local)))
In other words, the path being used is the osculating path
,
instead of the original path itself. Therefore, functions
and
do not have to be equal. They are identical in the following two cases:
The first case is when
,
where
.
In other words, path for all
.
The second case is when the path function requires no derivatives of
with order higher than
. For example:
…
— Me@2024-10-16 10:34:35 AM
.
.
2024.11.17 Sunday (c) All rights reserved by ACHK