使用scipy.optimize查找多变量方程的根 [英] Find the root of a multivariable equation using scipy.optimize

查看:142
本文介绍了使用scipy.optimize查找多变量方程的根的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我具有以下功能

import numpy as np
import scipy.optimize as optimize

def x(theta1, theta2, w, h, L1, L2):
    sint1 = np.sin(theta1)
    cost1 = np.cos(theta1)
    sint2 = np.sin(theta2)
    cost2 = np.cos(theta2)

    i1 = L1 * (cost1 + cost2) + w
    j1 = L1 * (sint1 - sint2) - h
    D = np.sqrt((L1*(cost2-cost1)+w)**2+(L1*(sint2-sint1)+h)**2)
    a = (0.25)*np.sqrt((4*L2**2-D**2)*D**2)

    return i1/2 + 2*j1*a/(D**2)

def y(theta1, theta2, w, h, L1, L2):
    sint1 = np.sin(theta1)
    cost1 = np.cos(theta1)
    sint2 = np.sin(theta2)
    cost2 = np.cos(theta2)

    i2 = L1 * (sint1 + sint2) + h
    j2 = L1 * (cost1 - cost2) - w
    D = np.sqrt((L1*(cost2-cost1)+w)**2+(L1*(sint2-sint1)+h)**2)
    a = (0.25)*np.sqrt((4*L2**2-D**2)*D**2)

    return i2/2 - 2*j2*a/(D**2)

def det_jacobiano(theta, w, h, L1, L2,eps):
    theta1,theta2 = theta
    dxdt1 = (-x(theta1+eps, theta2, w, h, L1, L2)+4*x(theta1, theta2, w, h, L1, L2)-3*x(theta1-eps, theta2, w, h, L1, L2))/(2*eps)
    dxdt2 = (-x(theta1, theta2+eps, w, h, L1, L2)+4*x(theta1, theta2, w, h, L1, L2)-3*x(theta1, theta2-eps, w, h, L1, L2))/(2*eps)
    dydt1 = (-y(theta1+eps, theta2, w, h, L1, L2)+4*y(theta1, theta2, w, h, L1, L2)-3*y(theta1-eps, theta2, w, h, L1, L2))/(2*eps)
    dydt2 = (-y(theta1, theta2+eps, w, h, L1, L2)+4*y(theta1, theta2, w, h, L1, L2)-3*y(theta1, theta2-eps, w, h, L1, L2))/(2*eps)  
    return dxdt1*dydt2 - dxdt2*dydt1

我想找到使det_jacobiano 0的theta 1和theta2的值.如您所见,函数det_jacobiano在函数x和y中求值.

And I want to find the values of theta 1 and theta2 that make det_jacobiano 0. As you can see the function det_jacobiano is evaluated in the functions x and y.

当我尝试使用scipy.optimize查找根目录时

When I try to use scipy.optimize to find the root

initial_guess = [2.693, 0.4538]
result = optimize.root(det_jacobiano, initial_guess,tol=1e-8,args=(20,0,100,100,1e-10),method='lm')

Obtengo el错误:TypeError: Improper input: N=2 must not exceed M=1

Obtengo el error: TypeError: Improper input: N=2 must not exceed M=1

推荐答案

求根是求解方程组的数值计算等效项.同样的基本约束也适用:您需要的方程式和未知数一样多.

Root finding is the numerical computation equivalent of solving a system of equations. The same basic constraint applies: you need as many equations as you have unknowns.

scipy中的所有寻根例程都希望第一个参数是返回N个值的N个变量的函数.本质上,该第一个参数应等效于具有N个未知数的N个方程组.因此,您的问题是det_jacobiano接受2个变量,但仅返回一个值.

All of the root finding routines in scipy expect the first parameter to be a function of N variables that returns N values. Essentially, that first parameter is meant to be equivalent to a system of N equations with N unknowns. Thus, your problem is that det_jacobiano takes 2 variables but only returns one value.

您不能在当前的公式中使用寻根方法,但是仍然可以进行最小化.将det_jacobiano的最后一行更改为:

You can't use root finding methods with your current formulation, but you can still do minimization. Change the last line of det_jacobiano to:

return np.abs(dxdt1*dydt2 - dxdt2*dydt1)

,然后使用 :

result = optimize.minimize(det_jacobiano, initial_guess, tol=1e-8, args=(20,0,100,100,1e-10), method='Nelder-Mead')

输出:

 final_simplex: (array([[ 1.47062275, -3.46178428],
       [ 1.47062275, -3.46178428],
       [ 1.47062275, -3.46178428]]), array([ 0.,  0.,  0.]))
           fun: 0.0
       message: 'Optimization terminated successfully.'
          nfev: 330
           nit: 137
        status: 0
       success: True
             x: array([ 1.47062275, -3.46178428])

result.fun保存最终的最小值(确实是0.0,如您所愿),而result.x保存产生该0.0theta1, theta2的值.

result.fun holds the final minimized value (which is indeed 0.0, like you wanted), and result.x holds the values of theta1, theta2 that produced that 0.0.

这篇关于使用scipy.optimize查找多变量方程的根的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆