If p and q are two points in a Euclidean space, then q − p is a vector in a vector space of as many dimensions as the Euclidean space.
E is the set of points in the Euclidean space; V is the set of vectors.
+ : E×V → E
− : E×E → V
1 e − e = 0
2 e + (v1 + v2) = (e + v1) + v2
3 If a, b, c, d ∊ E and they are points around a parallelogram, then a − b = d − c.
4 (e1 − e2) + (e2 − e3) = (e1 − e3)
5 {2} ⊢ (e + v) − v = e

We take up this question.

In n space we have n points {pi}. We have as well points x and y. Neither {x}∪{pi} nor {y}∪{pi} lie in any n−1 dimensional subspace. The n vectors pi − x form a basis for V; likewise the set {pi − y}. We may take x as an origin for a coordinate system in E such that the jth coordinate of pi is δij. Taking y as origin in place of x, we have another coordinate system. Given the coordinates of y in x’s system, what are the coordinates of x in y’s system?

Since for any given n+1 independent points and any other given n+1 points, there exists an affine transformation the maps the first onto the second, the answer does not depend on the locations of the p’s.

Let xi be the coordinates of x in the y system and yi be the coordinates of y in the x system. We have the vector equations
x = y + Σxi(pi − y)
y = x + Σyi(pi − x)
We want to express each xi in terms of the yi’s. Substituting x we have:
y = Σxi(pi − y) + y + Σyi(pi − x)
Σxi(pi − y) + Σyi(pi − x) = 0
Σxipi + Σyipi = xΣyi + yΣxi (type error!)


Another start to this problem. In the zbcc of this zone we compute the location of the far vertex V of the zone across the facet opposite the origin of this zone. Let vi name the n zbc coordinates of V. We have as direct data dk, the sd (squared distance) of V from the ends of each of the basis vectors. This gives us n equations, one for each value of k:
Σijgij(vi − δik)(vj − δjk) = dk
Σijgijvivj − Σij(gijviδjk) − Σij(gijvjδik) + Σij(gijδikδjk) = dk
Σijgijvivj − Σi(gikvi) − Σj(gkjvj) + gkk = dk
Σijgijvivj − 2 Σi(gikvi) = dk − gkk
let ts g v d =
let dl i j = if i=j then 1. else 0.
and aini = Array.init and len = Array.length in
let aa a b = aini (len a) (fun j -> a.(j) +. b.(j)) in
let n = len g in
let fd = (aini n (fun _ -> let s = ref 0. in for i=0 to n-1 do for j=0 to n-1 do
    s := !s +. g.(i).(j) *. v.(i) *. v.(j) done done; !s)) in
(aini n (fun k -> let s = ref 0. in for i=0 to n-1 do for j=0 to n-1 do
  s := !s +. g.(i).(j) *. (v.(i) -. (dl i k)) *. (v.(j) -. (dl j k)) done done; !s) = d,

(aa (aa fd (aini n (fun k -> let s = ref 0. in for i=0 to n-1 do for j=0 to n-1 do
    s := !s -. g.(i).(j) *. v.(i) *. (dl j k) done done; !s)))
  (aa (aini n (fun k -> let s = ref 0. in for i=0 to n-1 do for j=0 to n-1 do
    s := !s -. g.(i).(j) *. v.(j) *. (dl i k) done done; !s))
    (aini n (fun k -> let s = ref 0. in for i=0 to n-1 do for j=0 to n-1 do
    s := !s +. g.(i).(j) *. (dl i k) *. (dl j k) done done; !s)))) = d,

(aa (aa fd (aini n (fun k -> let s = ref 0. in for i=0 to n-1 do
   s := !s -. g.(i).(k) *. v.(i) done; !s)))
(aa (aini n (fun k -> let s = ref 0. in for j=0 to n-1 do
   s := !s -. g.(k).(j) *. v.(j) done; !s))
   (aini n (fun k -> g.(k).(k))))) = d,

(aa fd
  (aini n (fun k -> let s = ref 0. in for i=0 to n-1 do
    s := !s +. -2. *. g.(i).(k) *. v.(i) done; !s)))
= aini n (fun k -> d.(k) -. g.(k).(k)))
in [|ts [|[|1.; 0.|]; [|0.; 1.|]|] [|1.; 1.|] [|1.; 1.|];
    ts [|[|1.; 0.|]; [|0.; 1.|]|] [|2.; 2.|] [|5.; 5.|];
    ts [|[|1.; 0.|]; [|0.; 1.|]|] [|2.; 1.|] [|2.; 4.|];
    ts [|[|4.; 2.|]; [|2.; 2.|]|] [|0.5; 1.|] [|1.; 1.|];
    ts [|[|45.; 36.|]; [|36.; 45.|]|] [|2.; 2.|] [|9.; 9.|]|];;
--------
vertices at  (0, 0, 0), (1, 0, 0), (0, 1, 0), (0, 0, 1), (0, 0, -1)
zones at (0, 1, 2, 3), (0, 1, 2, 4)
complementary coordinates: (2, 0, 0), (2, 0, 0)
See Lagrange multipliers!