vote up 1 vote down star

hello i want to solve a system of n linear equations containing n variables using genetic algorithm.

i am having difficulty in defining the crossover operation as the solution may consist of floating point values. how do i proceed. seems possible but this is my first encounter with genetic algorithms so your help would be great.

suppose we have to solve x + 2y = 1 2x + 8y = 3

answer would be x = 1/2 and y = 1/4.

how do we model the problem.

Update: see if you could decipher anything from this paper http://www.masaumnet.com/archives/mjbas/volume1/issue2/mjbas010205.pdf

flag

73% accept rate
Can you be more specific? – Ngu Soon Hui Nov 7 at 8:28
Is this homework? Why don't you use the much better standard algorithms? – starblue Nov 7 at 11:13
yes it is homework. i have chosen this as my course project for AI. didn't have much time to decide. now i have to code it within a week. so i don't have enough time to research. – iamrohitbanga Nov 7 at 11:38

3 Answers

vote up 4 vote down

You simply don't. There are lots of different methods you can apply to solve linear systems. But "genetic algorithms" is not something that comes to mind. You'd use genetic algorithms to solve combinatorical problems (picking one element out of a finite set).

You usually solve linear systems using factorizations (QR, LU) or iterative algorithms (Gauß-Seidel, CG, ...)

link|flag
Maybe this is a homework question so he has to. – Ngu Soon Hui Nov 7 at 8:34
right, i have chosen this as a course project for AI. i didn't have much time to decide and now i don't have much time to code. this is a related paper www.masaumnet.com/archives/mjbas/volume1/.../mjbas010205.pdf but it does not explain the details. – iamrohitbanga Nov 7 at 10:42
is it really not possible? – iamrohitbanga Nov 7 at 10:51
masaumnet.com/archives/mjbas/… in case the above link does not work – iamrohitbanga Nov 7 at 10:58
3  
I don’t see why linear equations should a priory be any less amenable to a solution via genetic algorithms than any other function type. The procedure is the same. Notice that in all such cases you try to optimize a function – in this case the difference between the real, exact solution and the one found via the GA. GA is a general schema to traverse a solution landscape, not limited to a finite set of solutions. – Konrad Rudolph Nov 7 at 15:04
show 1 more comment
vote up 6 vote down

Your chromosome could be the n floating point numbers (doubles), or you could reinterpret them as bit strings by using a union:

const int n = 100;

union Chromosome {
  double val[n];
  unsigned char bits[n * sizeof(double)];
};

...then you can use the double values for interpretation of the solution/fitness value, and the bits for breeding/crossover/mutation.

Good luck!

link|flag
yes but the floating point representation would have to be taken into account. performing a crossover of random bits would do any good? – iamrohitbanga Nov 7 at 11:05
You'll have to try it--I suspect it would take a long time to converge but would work eventually. You could have your fitness function essentially kill off chromosomes that contained really extreme values. – Drew Hall Nov 7 at 11:44
You can do crossover (and mutation) however you want. Just cross between floating point numbers... have mutations just randomize a float... – Inverse Nov 22 at 22:10
vote up 1 vote down

One route is to pick your own floating point representation, which frees you to much with values as you want. Of course, that makes you responsible for implementing arithmetic operations. Perhaps you could find a bignum library you could alter.

You could also decompose platform-native floating points using e.g. frexp during the crossover step, then recombine it during culling.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.