←back to thread

426 points sampo | 1 comments | | HN request time: 0s | source
Show context
corygarms ◴[] No.45302603[source]
This is nuts. If I'm understanding correctly, the M. ibiricus queen mates with a M. structor male, uses his sperm to create sterile, hybrid female worker ants for her colony, then she (astonishingly) can also lay eggs that develop into fertile M. structor males, which means she has removed her genetic material from the egg and effectively cloned the male she previously mated with.
replies(8): >>45302659 #>>45302788 #>>45303102 #>>45303712 #>>45303759 #>>45303836 #>>45310163 #>>45311222 #
alphazard ◴[] No.45303102[source]
If you take the idea of genes as the target of evolution seriously, then every possible "bargain" between different genes that moves towards a pareto optimal for those genes, will eventually be discovered through the brute force search.
replies(7): >>45304037 #>>45304096 #>>45304269 #>>45304909 #>>45305479 #>>45308108 #>>45308418 #
jcims ◴[] No.45304909[source]
I still struggle with the brute force search a bit. Just naively a very small gene has 4^500 possible combinations.
replies(4): >>45305071 #>>45306084 #>>45306274 #>>45306506 #
1. didibus ◴[] No.45306274[source]
It's not brute force search, more like stochastic sampling of random variants. It's a directed search where feedback from the environment prunes and weights the search space, and reproduction is a stochastic process biased by fitness. And fitness is defined by the survival and chances of successful mating, aka reproductive success.

Basically, your sex drive is the main search optimization :p

Edit: This is essentially how genetic algorithms in computer science work. They’re often remarkably effective at finding good solutions without needing brute force.