Question: problem :how to know the intersection of 2 finctions

hi let's look for the intersection of 2 functions the first one f1 := unapply(CurveFitting[Spline]([[1.55, 1], [1.6, 0], [1.65, 0], [1.7, 0], [1.75, 0], [1.80, 0], [1.85, 0], [1.9, 0], [1.95, 0]], x, degree = 1), x); the second one r := unapply(CurveFitting[Spline]([[1.55, 0], [1.6, 1], [1.65, 1], [1.7, 1], [1.75, 0], [1.80, 0], [1.85, 0], [1.9, 0], [1.95, 0]], x, degree = 1), x); when we plot the 2 functions : plot({f1(x), r(x)}, x = 1 .. 1.95, y = 0 .. 1, thickness = 3); we see that there is 2 intersections that are 1.575000000, RealRange(1.750000000, infinity) but maple gives 1.575000000, 1.550000000, RealRange(1.750000000, infinity) normally 1.55 doesn't exist how to solve that thank you
Please Wait...