Optimization a program with 7 free parameters

AI Thread Summary
Optimizing an expression with seven free parameters presents significant challenges, particularly due to the complexity of systematically searching a 7-dimensional parameter space. For finding the global minimum, alternative methods such as simulated annealing and evolutionary algorithms (genetic algorithms) are recommended. While specific examples of these algorithms were requested, it was noted that providing detailed explanations would require extensive effort. Instead, resources like Wikipedia and specialized books on optimization techniques were suggested for further exploration. The clarity of the problem description is also crucial, as the nature of the expression may allow for mathematical solutions.
sukharef
Messages
54
Reaction score
0
Hello.
The problem is : I've got an expression to optimize with 7 free parameters. Ranges for each parameter are given. the simpliest way to optimize is to organize a program like for { for {for ...}} for each parameter and to get the result. Are there any other methods for solving the problem ?
Thank you!
 
Technology news on Phys.org
Except for a few simple cases, a systematic search of a 7-dimensional parameter space is impossible in practice.

There are plenty of different methods to try to solve the problem. Assuming you want the global minimum, you can use for instance simulated annealing or evolutionary (genetic) algorithms.
 
  • Like
Likes 1 person
DrClaude said:
Except for a few simple cases, a systematic search of a 7-dimensional parameter space is impossible in practice.

There are plenty of different methods to try to solve the problem. Assuming you want the global minimum, you can use for instance simulated annealing or evolutionary (genetic) algorithms.

could you give me some examples of those algorithms, please?
 
sukharef said:
could you give me some examples of those algorithms, please?
Not without hours of work!

You can check Wikipedia or, much better, find a good book on the subject.
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Back
Top