5.5习题

5.5

代码:

import numpy as np  
from scipy.optimize import minimize   
def objective(x):  
    x1, x2, x3 = x  
    return -(2*x1 + 3*x1**2 + 3*x2 + x2**2 + x3)   
constraints = [  
    {'type': 'ineq', 'fun': lambda x: 10 - (x[0] + 2*x[0]**2 + x[1] + 2*x[1]**2 + x[2])},  
    {'type': 'ineq', 'fun': lambda x: 50 - (x[0] + x[0]**2 + x[1] + x[1]**2 - x[2])},     
    {'type': 'ineq', 'fun': lambda x: 40 - (2*x[0] + x[0]**2 + 2*x[1] + x[2])},           
    {'type': 'eq',   'fun': lambda x: 2 - (x[0]**2 + x[2])},                              
    {'type': 'ineq', 'fun': lambda x: x[0] + 2*x[1] - 1}                                
]  
bounds = [(0, None), (None, None), (None, None)]
x0 = [0, 0, 0]   
result = minimize(objective, x0, bounds=bounds, constraints=constraints)    
if result.success:  
    print("Optimal solution found:")  
    print("x1 =", result.x[0])  
    print("x2 =", result.x[1])  
    print("x3 =", result.x[2])  
    print("Maximum f(x) =", -result.fun)  
else:  
    print("Optimization failed.") 

结果:

Optimal solution found:
x1 = 2.3333333314551923
x2 = 0.1666666730500357
x3 = -3.4444444356792134
Maximum f(x) = 18.083333333326205

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值