From 399e7ade126747ed67de656842c7a74f0d700125 Mon Sep 17 00:00:00 2001 From: mkw58fm9x <3067822056@qq.com> Date: Wed, 29 May 2024 00:52:30 +0800 Subject: [PATCH] ADD file via upload --- 第三问.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 第三问.txt diff --git a/第三问.txt b/第三问.txt new file mode 100644 index 0000000..e4494c8 --- /dev/null +++ b/第三问.txt @@ -0,0 +1,5 @@ +1.Both are polynomial interpolation methods, but their construction methods are different. Lagrange interpolation directly constructs interpolation polynomials, while Newton interpolation simplifies calculations through difference tables. + +2.Without specific data, we cannot directly compare the numerical results of the two. But in general, if there are enough data points and their distribution is reasonable, the approximation effect of the two near the interpolation points should be similar. There is not much difference between the two answers to this question + +3.The advantage of Newton interpolation is that if a new data point is added, only one row needs to be added to the difference table, without the need to recalculate the entire interpolation polynomial. Lagrangian interpolation requires recalculating all basis functions. \ No newline at end of file