can i extract the exact value of c3,c1 and c2?

4 次查看(过去 30 天)
I have this vector 1x3:
[- 2.622e+4094*c3^31 - 1.4849e+4098*c3^30 - 3.4477e+4101*c3^29 - 4.0489e+4104*c3^28 - 2.6497e+4107*c3^27 - 1.3883e+4110*c3^26 - 4.4405e+4112*c3^25 + 2.1219e+4115*c3^24 - 1.2998e+4118*c3^23 - 1.5485e+4119*c3^22 - 1.1258e+4121*c3^21 - 1.0393e+4122*c3^20 - 4.0188e+4122*c3^19 - 3.379e+4122*c3^18 - 1.7036e+4123*c3^17 - 3.1568e+4122*c3^16 - 2.4569e+4123*c3^15 + 1.0686e+4122*c3^14 - 1.5725e+4123*c3^13 + 2.6985e+4122*c3^12 - 4.1494e+4122*c3^11 + 8.8609e+4121*c3^10 - 9.5172e+4120*c3^9 + 2.6761e+4119*c3^8 - 2.5659e+4117*c3^7 - 1.4699e+4116*c3^6 - 1.5278e+4114*c3^5 - 7.7957e+4111*c3^4 - 2.504e+4109*c3^3 - 5.0061e+4106*c3^2 - 5.4378e+4103*c3 + 1.9627e+4098*c1 - 2.3949e+4100, 1.4631e+4090*c3^31 + 8.2859e+4093*c3^30 + 1.9238e+4097*c3^29 + 2.2593e+4100*c3^28 + 1.4785e+4103*c3^27 + 7.7469e+4105*c3^26 + 2.4778e+4108*c3^25 - 1.184e+4111*c3^24 + 7.2529e+4113*c3^23 + 8.6429e+4114*c3^22 + 6.282e+4116*c3^21 + 5.8013e+4117*c3^20 + 2.2441e+4118*c3^19 + 1.8918e+4118*c3^18 + 9.5113e+4118*c3^17 + 1.7881e+4118*c3^16 + 1.3715e+4119*c3^15 - 5.5797e+4117*c3^14 + 8.7728e+4118*c3^13 - 1.4812e+4118*c3^12 + 2.3111e+4118*c3^11 - 4.8796e+4117*c3^10 + 5.1713e+4116*c3^9 - 1.3424e+4115*c3^8 + 9.8873e+4112*c3^7 + 8.6758e+4111*c3^6 + 1.0745e+4110*c3^5 + 6.3398e+4107*c3^4 + 2.2458e+4105*c3^3 + 5.0766e+4102*c3^2 + 6.6973e+4099*c3 + 5.6076e+4097*c2 + 3.2835e+4096, 4.2062e+142*c3^32 + 2.3821e+146*c3^31 + 5.5307e+149*c3^30 + 6.495e+152*c3^29 + 4.2505e+155*c3^28 + 2.2271e+158*c3^27 + 7.1234e+160*c3^26 - 3.4038e+163*c3^25 + 2.0851e+166*c3^24 + 2.4843e+167*c3^23 + 1.8059e+169*c3^22 + 1.6674e+170*c3^21 + 6.4481e+170*c3^20 + 5.4258e+170*c3^19 + 2.7333e+171*c3^18 + 5.0862e+170*c3^17 + 3.9418e+171*c3^16 - 1.6823e+170*c3^15 + 2.5224e+171*c3^14 - 4.3084e+170*c3^13 + 6.6529e+170*c3^12 - 1.4161e+170*c3^11 + 1.5152e+169*c3^10 - 4.1699e+167*c3^9 + 3.7761e+165*c3^8 + 2.3891e+164*c3^7 + 2.6441e+162*c3^6 + 1.4601e+160*c3^5 + 5.1292e+157*c3^4 + 1.1708e+155*c3^3 + 1.6368e+152*c3^2 + 1.2538e+149*c3 + 4.0072e+145];
I need to have the exact values ​​of c3 c1 and c2, how should I do?

回答(1 个)

Shivam
Shivam 2023-12-1
Hi,
From the information provided, I recognize that the provided vector is a polynomial expression in terms of c3, c2, and c1, and you want to calculate the exact values of c3, c2, and c1.
To determine the exact values of c3, c2, and c1, you would need to solve these polynomial equations equating each to 0. However, the degree of the polynomial in each variable is quite high, making it computationally challenging to find the exact solutions using standard algebraic methods.
One approach to this problem would be utilizing numerical methods, such as polynomial root-finding algorithms. These algorithms can approximate the roots of a polynomial equation with high precision, even for high-degree polynomials. Some popular root-finding algorithms include:
  • Newton's Method
  • Bisection Method.
You can use one of the mentioned methods to find c3 from the third equation and then substitute it in the first and second equations to calculate c1 and c2 similarly.
Please refer to the following links to know more about Newton's method and the Bisection Method:
It is important to note that these methods can be efficient for large coefficients but may not provide the exact solution.
I hope it helps.

标签

产品


版本

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!