3v4l.org

run code in 300+ PHP versions simultaneously
<?php $runs = 1000; $agree = array('count' => 0, 'To Mom' => 0, 'To Dad' => 0, 'Joint' => 0); $disagree = array('count' => 0, 'Sole Fight' => 0, 'FsMj' => 0, 'MsFj' => 0, 'MfFm' => 0, 'other' => 0); $dadSole = 0; $momSole = 0; $fChk = array('f' => 0, 'm' => 0, 'j' => 0); $mChk = array('f' => 0, 'm' => 0, 'j' => 0, 'o' => 0); for ($i=0; $i < $runs ; $i++) { $mPref = rand(1,100); $fPref = rand(1,100); #### checking random chooser #### switch(fChoice($fPref)){ case 'f': $fChk['f']++; break; case 'm': $fChk['m']++; break; case 'joint': $fChk['j']++; break; } switch(mChoice($mPref)){ case 'f': $mChk['f']++; break; case 'm': $mChk['m']++; break; case 'joint': $mChk['j']++; break; case 'other': $mChk['o']++; break; } #### ####### ####### ####### #### if(fChoice($fPref) == mChoice($mPref) ) { // if in agreement $agree['count']++; // increment counter switch (fChoice($fPref)) { // increment specific choice agreed upon case 'f': $agree['To Mom']++; break; case 'm': $agree['To Dad']++; break; case 'joint': $agree['Joint']++; break; } } else { // calculate stats for disagreements if(mChoice($mPref) == 'other') { continue; } // toss out Dad wants other cases $disagree['count']++; if(fChoice($fPref) == 'f') { // mom wants sole $momSole++; } if(mChoice($mPref) == 'm'){ // dad wants sole $dadSole++; } if(fChoice($fPref) == 'f' && mChoice($mPref) == 'm') { // both want sole $disagree['Sole Fight']++; } elseif(fChoice($fPref) == 'f' && mChoice($mPref) == 'joint') { // Mom Sole - Dad Joint $disagree['FsMj']++; } elseif(fChoice($fPref) == 'joint' && mChoice($mPref) == 'm') { // Mom Joint - Dad Sole $disagree['MsFj']++; } elseif(fChoice($fPref) == 'm' && mChoice($mPref) == 'f') { // hot potato $disagree['MfFm']++; } else { $disagree['other']++; // echo 'Dad wants '.mChoice($mPref).' and Mom wants '.fChoice($fPref).'<br>'; } } } $sigDigits = 2; $percentAgree = $agree['count'] / $runs * 100; $percentDisagree = $disagree['count'] / $runs * 100; $agreeMom = round($agree['To Mom'] / $agree['count'] * 100, $sigDigits); $agreeDad = round($agree['To Dad'] / $agree['count'] * 100, $sigDigits); $agreeJnt = round($agree['Joint'] / $agree['count'] * 100, $sigDigits); $disagreeSole = round($disagree['Sole Fight'] / $disagree['count'] * 100, $sigDigits); $disagreeFsMj = round($disagree['FsMj'] / $disagree['count'] * 100, $sigDigits); $disagreeMsFj = round($disagree['MsFj'] / $disagree['count'] * 100, $sigDigits); $disagreeNone = round($disagree['MfFm'] / $disagree['count'] * 100, $sigDigits); $disagreeOther = round($disagree['other'] / $disagree['count'] * 100, $sigDigits); $dadPercent = round($dadSole / $disagree['count'] * 100, $sigDigits); $momPercent = round($momSole / $disagree['count'] * 100, $sigDigits); // 'Sole Fight' => 0, 'FsMj' => 0, 'MsFj' => 0, 'other' => 0 echo "From {$runs} runs there were {$percentAgree}% agreements and {$percentDisagree}% disagreements."; echo "From the agreements <ul> <li>{$agreeMom}% go to Mom</li> <li>{$agreeDad}% go to Dad</li> <li>{$agreeJnt}% joint custody</li> </ul>"; echo "From the disagreements <ul> <li> {$momPercent}% of Mom's want sole custody</li> <li> {$dadPercent}% of Dad's want sole custody</li> <br><br> <li>{$disagreeSole}% both want Sole Custody</li> <li>{$disagreeFsMj}% of cases: Mom wants Sole; Dad joint</li> <li>{$disagreeMsFj}% of cases: Dad wants Sole; Mom joint</li> <li>{$disagreeNone}% of cases: Hot Potato the Kids!</li> <li>{$disagreeOther}% are in another configuration of disagreement</li> </ul>"; foreach ($fChk as &$optionCount) { $optionCount = round($optionCount / $runs * 100, $sigDigits); } foreach ($mChk as &$optionCount) { $optionCount = round($optionCount / $runs * 100, $sigDigits); } echo "<br><br>"; print_r($fChk); echo "<br><br>"; print_r($mChk); function fChoice ($num) { if($num <= 82) { return 'f'; } if($num <= 85) { return 'm'; } else { return 'joint'; } } function mChoice ($num) { if($num <= 29) { return 'f'; } if($num <= 62) { return 'm'; } if ($num <= 97) { return 'joint'; } else { return 'other'; } }
Output for 7.2.0
From 1000 runs there were 30.6% agreements and 65.9% disagreements.From the agreements <ul> <li>80.07% go to Mom</li> <li>2.29% go to Dad</li> <li>17.65% joint custody</li> </ul>From the disagreements <ul> <li> 80.12% of Mom's want sole custody</li> <li> 47.5% of Dad's want sole custody</li> <br><br> <li>37.94% both want Sole Custody</li> <li>42.19% of cases: Mom wants Sole; Dad joint</li> <li>9.56% of cases: Dad wants Sole; Mom joint</li> <li>1.52% of cases: Hot Potato the Kids!</li> <li>8.8% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80 [m] => 3.1 [j] => 16.9 ) <br><br>Array ( [f] => 30.1 [m] => 32 [j] => 34.4 [o] => 3.5 )
Output for 7.1.7
From 1000 runs there were 27.7% agreements and 68.4% disagreements.From the agreements <ul> <li>81.23% go to Mom</li> <li>2.17% go to Dad</li> <li>16.61% joint custody</li> </ul>From the disagreements <ul> <li> 81.58% of Mom's want sole custody</li> <li> 49.42% of Dad's want sole custody</li> <br><br> <li>41.37% both want Sole Custody</li> <li>40.2% of cases: Mom wants Sole; Dad joint</li> <li>8.04% of cases: Dad wants Sole; Mom joint</li> <li>0.88% of cases: Hot Potato the Kids!</li> <li>9.5% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.4 [m] => 2.7 [j] => 15.9 ) <br><br>Array ( [f] => 28.2 [m] => 34.4 [j] => 33.5 [o] => 3.9 )
Output for 7.1.6
From 1000 runs there were 32.6% agreements and 64.8% disagreements.From the agreements <ul> <li>77.61% go to Mom</li> <li>2.76% go to Dad</li> <li>19.63% joint custody</li> </ul>From the disagreements <ul> <li> 84.88% of Mom's want sole custody</li> <li> 44.6% of Dad's want sole custody</li> <br><br> <li>38.73% both want Sole Custody</li> <li>46.14% of cases: Mom wants Sole; Dad joint</li> <li>5.86% of cases: Dad wants Sole; Mom joint</li> <li>1.23% of cases: Hot Potato the Kids!</li> <li>8.02% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.6 [m] => 2.9 [j] => 14.5 ) <br><br>Array ( [f] => 30.2 [m] => 29.8 [j] => 37.4 [o] => 2.6 )
Output for 7.1.5
From 1000 runs there were 31.2% agreements and 65.7% disagreements.From the agreements <ul> <li>75.32% go to Mom</li> <li>5.13% go to Dad</li> <li>19.55% joint custody</li> </ul>From the disagreements <ul> <li> 85.84% of Mom's want sole custody</li> <li> 47.34% of Dad's want sole custody</li> <br><br> <li>40.79% both want Sole Custody</li> <li>45.05% of cases: Mom wants Sole; Dad joint</li> <li>6.54% of cases: Dad wants Sole; Mom joint</li> <li>1.37% of cases: Hot Potato the Kids!</li> <li>6.24% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 3.8 [j] => 13.9 ) <br><br>Array ( [f] => 27.3 [m] => 32.7 [j] => 36.9 [o] => 3.1 )
Output for 7.1.0
From 1000 runs there were 28% agreements and 68.8% disagreements.From the agreements <ul> <li>77.5% go to Mom</li> <li>1.79% go to Dad</li> <li>20.71% joint custody</li> </ul>From the disagreements <ul> <li> 86.05% of Mom's want sole custody</li> <li> 45.78% of Dad's want sole custody</li> <br><br> <li>39.97% both want Sole Custody</li> <li>46.08% of cases: Mom wants Sole; Dad joint</li> <li>5.81% of cases: Dad wants Sole; Mom joint</li> <li>1.02% of cases: Hot Potato the Kids!</li> <li>7.12% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.1 [m] => 2.5 [j] => 14.4 ) <br><br>Array ( [f] => 26.4 [m] => 32 [j] => 38.4 [o] => 3.2 )
Output for 7.0.20
From 1000 runs there were 31% agreements and 66.5% disagreements.From the agreements <ul> <li>77.1% go to Mom</li> <li>1.61% go to Dad</li> <li>21.29% joint custody</li> </ul>From the disagreements <ul> <li> 84.81% of Mom's want sole custody</li> <li> 48.72% of Dad's want sole custody</li> <br><br> <li>41.5% both want Sole Custody</li> <li>43.31% of cases: Mom wants Sole; Dad joint</li> <li>7.22% of cases: Dad wants Sole; Mom joint</li> <li>1.05% of cases: Hot Potato the Kids!</li> <li>6.92% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.4 [m] => 2.7 [j] => 14.9 ) <br><br>Array ( [f] => 27.9 [m] => 32.9 [j] => 36.7 [o] => 2.5 )
Output for 7.0.14
From 1000 runs there were 28.2% agreements and 68.8% disagreements.From the agreements <ul> <li>80.5% go to Mom</li> <li>4.96% go to Dad</li> <li>14.54% joint custody</li> </ul>From the disagreements <ul> <li> 84.59% of Mom's want sole custody</li> <li> 46.8% of Dad's want sole custody</li> <br><br> <li>39.83% both want Sole Custody</li> <li>44.77% of cases: Mom wants Sole; Dad joint</li> <li>6.98% of cases: Dad wants Sole; Mom joint</li> <li>1.16% of cases: Hot Potato the Kids!</li> <li>7.27% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.4 [m] => 3 [j] => 13.6 ) <br><br>Array ( [f] => 27.7 [m] => 33.6 [j] => 35.7 [o] => 3 )
Output for 7.0.10
From 1000 runs there were 28.8% agreements and 68% disagreements.From the agreements <ul> <li>80.9% go to Mom</li> <li>2.78% go to Dad</li> <li>16.32% joint custody</li> </ul>From the disagreements <ul> <li> 79.26% of Mom's want sole custody</li> <li> 46.18% of Dad's want sole custody</li> <br><br> <li>36.32% both want Sole Custody</li> <li>42.94% of cases: Mom wants Sole; Dad joint</li> <li>9.85% of cases: Dad wants Sole; Mom joint</li> <li>1.91% of cases: Hot Potato the Kids!</li> <li>8.97% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 79.4 [m] => 3.5 [j] => 17.1 ) <br><br>Array ( [f] => 29.5 [m] => 32.2 [j] => 35.1 [o] => 3.2 )
Output for 7.0.9
From 1000 runs there were 30.3% agreements and 67.4% disagreements.From the agreements <ul> <li>80.2% go to Mom</li> <li>3.3% go to Dad</li> <li>16.5% joint custody</li> </ul>From the disagreements <ul> <li> 82.79% of Mom's want sole custody</li> <li> 48.66% of Dad's want sole custody</li> <br><br> <li>40.95% both want Sole Custody</li> <li>41.84% of cases: Mom wants Sole; Dad joint</li> <li>7.72% of cases: Dad wants Sole; Mom joint</li> <li>0.74% of cases: Hot Potato the Kids!</li> <li>8.75% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 2.6 [j] => 15.3 ) <br><br>Array ( [f] => 29.6 [m] => 33.8 [j] => 34.3 [o] => 2.3 )
Output for 7.0.8
From 1000 runs there were 30.3% agreements and 66.6% disagreements.From the agreements <ul> <li>76.57% go to Mom</li> <li>4.62% go to Dad</li> <li>18.81% joint custody</li> </ul>From the disagreements <ul> <li> 80.93% of Mom's want sole custody</li> <li> 51.65% of Dad's want sole custody</li> <br><br> <li>42.34% both want Sole Custody</li> <li>38.59% of cases: Mom wants Sole; Dad joint</li> <li>9.31% of cases: Dad wants Sole; Mom joint</li> <li>1.2% of cases: Hot Potato the Kids!</li> <li>8.56% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 79.2 [m] => 3.4 [j] => 17.4 ) <br><br>Array ( [f] => 28.8 [m] => 35.8 [j] => 32.3 [o] => 3.1 )
Output for 7.0.7
From 1000 runs there were 29.5% agreements and 67.3% disagreements.From the agreements <ul> <li>77.63% go to Mom</li> <li>2.37% go to Dad</li> <li>20% joint custody</li> </ul>From the disagreements <ul> <li> 83.36% of Mom's want sole custody</li> <li> 49.33% of Dad's want sole custody</li> <br><br> <li>41.6% both want Sole Custody</li> <li>41.75% of cases: Mom wants Sole; Dad joint</li> <li>7.73% of cases: Dad wants Sole; Mom joint</li> <li>1.63% of cases: Hot Potato the Kids!</li> <li>7.28% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.6 [m] => 2.4 [j] => 16 ) <br><br>Array ( [f] => 28.3 [m] => 33.9 [j] => 34.6 [o] => 3.2 )
Output for 7.0.6
From 1000 runs there were 29.9% agreements and 67.9% disagreements.From the agreements <ul> <li>78.93% go to Mom</li> <li>4.01% go to Dad</li> <li>17.06% joint custody</li> </ul>From the disagreements <ul> <li> 83.51% of Mom's want sole custody</li> <li> 47.13% of Dad's want sole custody</li> <br><br> <li>39.91% both want Sole Custody</li> <li>43.59% of cases: Mom wants Sole; Dad joint</li> <li>7.22% of cases: Dad wants Sole; Mom joint</li> <li>1.18% of cases: Hot Potato the Kids!</li> <li>8.1% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.2 [m] => 3.3 [j] => 14.5 ) <br><br>Array ( [f] => 28.7 [m] => 33.2 [j] => 35.9 [o] => 2.2 )
Output for 7.0.5
From 1000 runs there were 32.5% agreements and 63.9% disagreements.From the agreements <ul> <li>76% go to Mom</li> <li>2.77% go to Dad</li> <li>21.23% joint custody</li> </ul>From the disagreements <ul> <li> 83.88% of Mom's want sole custody</li> <li> 45.54% of Dad's want sole custody</li> <br><br> <li>40.38% both want Sole Custody</li> <li>43.51% of cases: Mom wants Sole; Dad joint</li> <li>5.16% of cases: Dad wants Sole; Mom joint</li> <li>1.72% of cases: Hot Potato the Kids!</li> <li>9.23% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.5 [m] => 3.5 [j] => 15 ) <br><br>Array ( [f] => 30.4 [m] => 30 [j] => 36 [o] => 3.6 )
Output for 7.0.4
From 1000 runs there were 30.5% agreements and 66.8% disagreements.From the agreements <ul> <li>79.34% go to Mom</li> <li>4.26% go to Dad</li> <li>16.39% joint custody</li> </ul>From the disagreements <ul> <li> 83.83% of Mom's want sole custody</li> <li> 49.4% of Dad's want sole custody</li> <br><br> <li>41.92% both want Sole Custody</li> <li>41.92% of cases: Mom wants Sole; Dad joint</li> <li>7.49% of cases: Dad wants Sole; Mom joint</li> <li>1.5% of cases: Hot Potato the Kids!</li> <li>7.19% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 3.6 [j] => 14.1 ) <br><br>Array ( [f] => 29 [m] => 34.3 [j] => 34 [o] => 2.7 )
Output for 7.0.3
From 1000 runs there were 30.1% agreements and 67.3% disagreements.From the agreements <ul> <li>79.07% go to Mom</li> <li>4.65% go to Dad</li> <li>16.28% joint custody</li> </ul>From the disagreements <ul> <li> 82.76% of Mom's want sole custody</li> <li> 46.95% of Dad's want sole custody</li> <br><br> <li>38.78% both want Sole Custody</li> <li>43.98% of cases: Mom wants Sole; Dad joint</li> <li>8.17% of cases: Dad wants Sole; Mom joint</li> <li>1.34% of cases: Hot Potato the Kids!</li> <li>7.73% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.3 [m] => 3.5 [j] => 15.2 ) <br><br>Array ( [f] => 28.7 [m] => 33 [j] => 35.7 [o] => 2.6 )
Output for 7.0.2
From 1000 runs there were 29.4% agreements and 67.3% disagreements.From the agreements <ul> <li>81.29% go to Mom</li> <li>4.08% go to Dad</li> <li>14.63% joint custody</li> </ul>From the disagreements <ul> <li> 83.36% of Mom's want sole custody</li> <li> 47.7% of Dad's want sole custody</li> <br><br> <li>41.16% both want Sole Custody</li> <li>42.2% of cases: Mom wants Sole; Dad joint</li> <li>6.54% of cases: Dad wants Sole; Mom joint</li> <li>1.34% of cases: Hot Potato the Kids!</li> <li>8.77% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.8 [m] => 3.4 [j] => 13.8 ) <br><br>Array ( [f] => 29.5 [m] => 33.3 [j] => 33.9 [o] => 3.3 )
Output for 7.0.1
From 1000 runs there were 30% agreements and 67.1% disagreements.From the agreements <ul> <li>78% go to Mom</li> <li>3.67% go to Dad</li> <li>18.33% joint custody</li> </ul>From the disagreements <ul> <li> 80.63% of Mom's want sole custody</li> <li> 41.58% of Dad's want sole custody</li> <br><br> <li>33.08% both want Sole Custody</li> <li>47.54% of cases: Mom wants Sole; Dad joint</li> <li>8.49% of cases: Dad wants Sole; Mom joint</li> <li>0.89% of cases: Hot Potato the Kids!</li> <li>9.99% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 79.6 [m] => 3.4 [j] => 17 ) <br><br>Array ( [f] => 29 [m] => 29 [j] => 39.1 [o] => 2.9 )
Output for 7.0.0
From 1000 runs there were 29.6% agreements and 68.4% disagreements.From the agreements <ul> <li>79.39% go to Mom</li> <li>2.03% go to Dad</li> <li>18.58% joint custody</li> </ul>From the disagreements <ul> <li> 82.6% of Mom's want sole custody</li> <li> 49.42% of Dad's want sole custody</li> <br><br> <li>40.94% both want Sole Custody</li> <li>41.67% of cases: Mom wants Sole; Dad joint</li> <li>8.48% of cases: Dad wants Sole; Mom joint</li> <li>1.02% of cases: Hot Potato the Kids!</li> <li>7.89% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.6 [m] => 2.3 [j] => 16.1 ) <br><br>Array ( [f] => 28.6 [m] => 34.4 [j] => 35 [o] => 2 )
Output for 5.6.28
From 1000 runs there were 31.5% agreements and 65.6% disagreements.From the agreements <ul> <li>79.37% go to Mom</li> <li>5.4% go to Dad</li> <li>15.24% joint custody</li> </ul>From the disagreements <ul> <li> 83.69% of Mom's want sole custody</li> <li> 44.21% of Dad's want sole custody</li> <br><br> <li>37.2% both want Sole Custody</li> <li>46.49% of cases: Mom wants Sole; Dad joint</li> <li>7.01% of cases: Dad wants Sole; Mom joint</li> <li>0.76% of cases: Hot Potato the Kids!</li> <li>8.54% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 3.3 [j] => 14.6 ) <br><br>Array ( [f] => 30.1 [m] => 30.7 [j] => 36.3 [o] => 2.9 )
Output for 5.6.25
From 1000 runs there were 28.3% agreements and 69.5% disagreements.From the agreements <ul> <li>80.57% go to Mom</li> <li>2.47% go to Dad</li> <li>16.96% joint custody</li> </ul>From the disagreements <ul> <li> 83.88% of Mom's want sole custody</li> <li> 49.35% of Dad's want sole custody</li> <br><br> <li>41.87% both want Sole Custody</li> <li>42.01% of cases: Mom wants Sole; Dad joint</li> <li>7.48% of cases: Dad wants Sole; Mom joint</li> <li>1.01% of cases: Hot Potato the Kids!</li> <li>7.63% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.9 [m] => 3.2 [j] => 13.9 ) <br><br>Array ( [f] => 27.1 [m] => 35 [j] => 35.7 [o] => 2.2 )
Output for 5.6.24
From 1000 runs there were 29.2% agreements and 68.1% disagreements.From the agreements <ul> <li>78.42% go to Mom</li> <li>3.42% go to Dad</li> <li>18.15% joint custody</li> </ul>From the disagreements <ul> <li> 84.73% of Mom's want sole custody</li> <li> 43.61% of Dad's want sole custody</li> <br><br> <li>38.33% both want Sole Custody</li> <li>46.4% of cases: Mom wants Sole; Dad joint</li> <li>5.29% of cases: Dad wants Sole; Mom joint</li> <li>1.91% of cases: Hot Potato the Kids!</li> <li>8.08% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.7 [m] => 3.1 [j] => 14.2 ) <br><br>Array ( [f] => 28.9 [m] => 30.7 [j] => 37.7 [o] => 2.7 )
Output for 5.6.23
From 1000 runs there were 30.9% agreements and 66.7% disagreements.From the agreements <ul> <li>79.94% go to Mom</li> <li>3.24% go to Dad</li> <li>16.83% joint custody</li> </ul>From the disagreements <ul> <li> 84.56% of Mom's want sole custody</li> <li> 46.78% of Dad's want sole custody</li> <br><br> <li>39.28% both want Sole Custody</li> <li>45.28% of cases: Mom wants Sole; Dad joint</li> <li>7.5% of cases: Dad wants Sole; Mom joint</li> <li>1.5% of cases: Hot Potato the Kids!</li> <li>6.45% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.8 [m] => 2.8 [j] => 14.4 ) <br><br>Array ( [f] => 29.3 [m] => 32.2 [j] => 36.1 [o] => 2.4 )
Output for 5.6.22
From 1000 runs there were 31.7% agreements and 64.9% disagreements.From the agreements <ul> <li>85.49% go to Mom</li> <li>1.89% go to Dad</li> <li>12.62% joint custody</li> </ul>From the disagreements <ul> <li> 82.28% of Mom's want sole custody</li> <li> 49.61% of Dad's want sole custody</li> <br><br> <li>41.6% both want Sole Custody</li> <li>40.68% of cases: Mom wants Sole; Dad joint</li> <li>8.01% of cases: Dad wants Sole; Mom joint</li> <li>0.92% of cases: Hot Potato the Kids!</li> <li>8.78% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.8 [m] => 2.3 [j] => 13.9 ) <br><br>Array ( [f] => 32.3 [m] => 32.8 [j] => 31.5 [o] => 3.4 )
Output for 5.6.21
From 1000 runs there were 33.1% agreements and 63.8% disagreements.From the agreements <ul> <li>81.87% go to Mom</li> <li>2.42% go to Dad</li> <li>15.71% joint custody</li> </ul>From the disagreements <ul> <li> 81.35% of Mom's want sole custody</li> <li> 45.77% of Dad's want sole custody</li> <br><br> <li>37.93% both want Sole Custody</li> <li>43.42% of cases: Mom wants Sole; Dad joint</li> <li>7.84% of cases: Dad wants Sole; Mom joint</li> <li>1.72% of cases: Hot Potato the Kids!</li> <li>9.09% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 3.2 [j] => 14.7 ) <br><br>Array ( [f] => 32.7 [m] => 30 [j] => 34.2 [o] => 3.1 )
Output for 5.6.20
From 1000 runs there were 30% agreements and 67.1% disagreements.From the agreements <ul> <li>82.33% go to Mom</li> <li>3.33% go to Dad</li> <li>14.33% joint custody</li> </ul>From the disagreements <ul> <li> 80.48% of Mom's want sole custody</li> <li> 46.05% of Dad's want sole custody</li> <br><br> <li>38.9% both want Sole Custody</li> <li>41.58% of cases: Mom wants Sole; Dad joint</li> <li>7.15% of cases: Dad wants Sole; Mom joint</li> <li>1.34% of cases: Hot Potato the Kids!</li> <li>11.03% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.5 [m] => 4.2 [j] => 15.3 ) <br><br>Array ( [f] => 30.8 [m] => 31.9 [j] => 34.4 [o] => 2.9 )
Output for 5.6.19
From 1000 runs there were 29.8% agreements and 67% disagreements.From the agreements <ul> <li>81.54% go to Mom</li> <li>3.36% go to Dad</li> <li>15.1% joint custody</li> </ul>From the disagreements <ul> <li> 82.24% of Mom's want sole custody</li> <li> 50.3% of Dad's want sole custody</li> <br><br> <li>41.04% both want Sole Custody</li> <li>41.19% of cases: Mom wants Sole; Dad joint</li> <li>9.25% of cases: Dad wants Sole; Mom joint</li> <li>0.75% of cases: Hot Potato the Kids!</li> <li>7.76% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.9 [m] => 2.6 [j] => 15.5 ) <br><br>Array ( [f] => 28.9 [m] => 34.7 [j] => 33.2 [o] => 3.2 )
Output for 5.6.18
From 1000 runs there were 28.7% agreements and 68.3% disagreements.From the agreements <ul> <li>83.62% go to Mom</li> <li>1.74% go to Dad</li> <li>14.63% joint custody</li> </ul>From the disagreements <ul> <li> 82.14% of Mom's want sole custody</li> <li> 47.29% of Dad's want sole custody</li> <br><br> <li>40.56% both want Sole Custody</li> <li>41.58% of cases: Mom wants Sole; Dad joint</li> <li>6.73% of cases: Dad wants Sole; Mom joint</li> <li>2.34% of cases: Hot Potato the Kids!</li> <li>8.78% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.5 [m] => 3.6 [j] => 13.9 ) <br><br>Array ( [f] => 30.2 [m] => 32.8 [j] => 34 [o] => 3 )
Output for 5.6.17
From 1000 runs there were 34.2% agreements and 61.7% disagreements.From the agreements <ul> <li>78.65% go to Mom</li> <li>2.63% go to Dad</li> <li>18.71% joint custody</li> </ul>From the disagreements <ul> <li> 83.31% of Mom's want sole custody</li> <li> 49.11% of Dad's want sole custody</li> <br><br> <li>41.33% both want Sole Custody</li> <li>41.98% of cases: Mom wants Sole; Dad joint</li> <li>7.78% of cases: Dad wants Sole; Mom joint</li> <li>0.97% of cases: Hot Potato the Kids!</li> <li>7.94% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.5 [m] => 2 [j] => 16.5 ) <br><br>Array ( [f] => 32 [m] => 31.2 [j] => 32.7 [o] => 4.1 )
Output for 5.6.16
From 1000 runs there were 30.1% agreements and 66.8% disagreements.From the agreements <ul> <li>76.08% go to Mom</li> <li>4.98% go to Dad</li> <li>18.94% joint custody</li> </ul>From the disagreements <ul> <li> 82.49% of Mom's want sole custody</li> <li> 48.35% of Dad's want sole custody</li> <br><br> <li>41.92% both want Sole Custody</li> <li>40.57% of cases: Mom wants Sole; Dad joint</li> <li>6.44% of cases: Dad wants Sole; Mom joint</li> <li>1.2% of cases: Hot Potato the Kids!</li> <li>9.88% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.5 [m] => 4.1 [j] => 15.4 ) <br><br>Array ( [f] => 28.6 [m] => 33.8 [j] => 34.5 [o] => 3.1 )
Output for 5.6.15
From 1000 runs there were 30.7% agreements and 66.5% disagreements.From the agreements <ul> <li>81.11% go to Mom</li> <li>1.3% go to Dad</li> <li>17.59% joint custody</li> </ul>From the disagreements <ul> <li> 84.36% of Mom's want sole custody</li> <li> 46.17% of Dad's want sole custody</li> <br><br> <li>39.1% both want Sole Custody</li> <li>45.26% of cases: Mom wants Sole; Dad joint</li> <li>7.07% of cases: Dad wants Sole; Mom joint</li> <li>1.35% of cases: Hot Potato the Kids!</li> <li>7.22% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.3 [m] => 2 [j] => 14.7 ) <br><br>Array ( [f] => 29.9 [m] => 31.1 [j] => 36.2 [o] => 2.8 )
Output for 5.6.14
From 1000 runs there were 28.3% agreements and 68.2% disagreements.From the agreements <ul> <li>78.8% go to Mom</li> <li>4.59% go to Dad</li> <li>16.61% joint custody</li> </ul>From the disagreements <ul> <li> 83.72% of Mom's want sole custody</li> <li> 46.04% of Dad's want sole custody</li> <br><br> <li>39% both want Sole Custody</li> <li>44.72% of cases: Mom wants Sole; Dad joint</li> <li>7.04% of cases: Dad wants Sole; Mom joint</li> <li>1.03% of cases: Hot Potato the Kids!</li> <li>8.21% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 2.8 [j] => 14.9 ) <br><br>Array ( [f] => 27.8 [m] => 32.7 [j] => 36 [o] => 3.5 )
Output for 5.6.13
From 1000 runs there were 30.6% agreements and 66.7% disagreements.From the agreements <ul> <li>82.03% go to Mom</li> <li>2.61% go to Dad</li> <li>15.36% joint custody</li> </ul>From the disagreements <ul> <li> 82.31% of Mom's want sole custody</li> <li> 48.73% of Dad's want sole custody</li> <br><br> <li>41.08% both want Sole Custody</li> <li>41.23% of cases: Mom wants Sole; Dad joint</li> <li>7.65% of cases: Dad wants Sole; Mom joint</li> <li>1.5% of cases: Hot Potato the Kids!</li> <li>8.55% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.9 [m] => 2.9 [j] => 15.2 ) <br><br>Array ( [f] => 30.7 [m] => 33.3 [j] => 33.3 [o] => 2.7 )
Output for 5.6.12
From 1000 runs there were 34.2% agreements and 63.3% disagreements.From the agreements <ul> <li>80.12% go to Mom</li> <li>2.92% go to Dad</li> <li>16.96% joint custody</li> </ul>From the disagreements <ul> <li> 81.99% of Mom's want sole custody</li> <li> 45.81% of Dad's want sole custody</li> <br><br> <li>39.02% both want Sole Custody</li> <li>42.97% of cases: Mom wants Sole; Dad joint</li> <li>6.79% of cases: Dad wants Sole; Mom joint</li> <li>1.42% of cases: Hot Potato the Kids!</li> <li>9.79% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.2 [m] => 3.3 [j] => 15.5 ) <br><br>Array ( [f] => 33.1 [m] => 30 [j] => 34.4 [o] => 2.5 )
Output for 5.6.11
From 1000 runs there were 29.7% agreements and 68.1% disagreements.From the agreements <ul> <li>77.44% go to Mom</li> <li>2.69% go to Dad</li> <li>19.87% joint custody</li> </ul>From the disagreements <ul> <li> 84.29% of Mom's want sole custody</li> <li> 47.43% of Dad's want sole custody</li> <br><br> <li>40.09% both want Sole Custody</li> <li>44.2% of cases: Mom wants Sole; Dad joint</li> <li>7.34% of cases: Dad wants Sole; Mom joint</li> <li>1.32% of cases: Hot Potato the Kids!</li> <li>7.05% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 2.5 [j] => 15.2 ) <br><br>Array ( [f] => 27.9 [m] => 33.1 [j] => 36.8 [o] => 2.2 )
Output for 5.6.10
From 1000 runs there were 30.3% agreements and 66.8% disagreements.From the agreements <ul> <li>79.87% go to Mom</li> <li>3.96% go to Dad</li> <li>16.17% joint custody</li> </ul>From the disagreements <ul> <li> 83.23% of Mom's want sole custody</li> <li> 49.55% of Dad's want sole custody</li> <br><br> <li>40.57% both want Sole Custody</li> <li>42.66% of cases: Mom wants Sole; Dad joint</li> <li>8.98% of cases: Dad wants Sole; Mom joint</li> <li>2.54% of cases: Hot Potato the Kids!</li> <li>5.24% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.9 [m] => 3.4 [j] => 14.7 ) <br><br>Array ( [f] => 29 [m] => 34.3 [j] => 33.8 [o] => 2.9 )
Output for 5.6.9
From 1000 runs there were 29.2% agreements and 68% disagreements.From the agreements <ul> <li>76.03% go to Mom</li> <li>5.48% go to Dad</li> <li>18.49% joint custody</li> </ul>From the disagreements <ul> <li> 82.21% of Mom's want sole custody</li> <li> 48.24% of Dad's want sole custody</li> <br><br> <li>40.59% both want Sole Custody</li> <li>41.62% of cases: Mom wants Sole; Dad joint</li> <li>7.65% of cases: Dad wants Sole; Mom joint</li> <li>1.03% of cases: Hot Potato the Kids!</li> <li>9.12% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.4 [m] => 3.5 [j] => 16.1 ) <br><br>Array ( [f] => 27.9 [m] => 34.4 [j] => 34.9 [o] => 2.8 )
Output for 5.6.8
From 1000 runs there were 30.1% agreements and 67.2% disagreements.From the agreements <ul> <li>78.07% go to Mom</li> <li>2.66% go to Dad</li> <li>19.27% joint custody</li> </ul>From the disagreements <ul> <li> 85.57% of Mom's want sole custody</li> <li> 46.43% of Dad's want sole custody</li> <br><br> <li>40.48% both want Sole Custody</li> <li>45.09% of cases: Mom wants Sole; Dad joint</li> <li>5.95% of cases: Dad wants Sole; Mom joint</li> <li>1.64% of cases: Hot Potato the Kids!</li> <li>6.85% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.9 [m] => 3.7 [j] => 13.4 ) <br><br>Array ( [f] => 27.9 [m] => 32 [j] => 37.4 [o] => 2.7 )
Output for 5.6.7
From 1000 runs there were 29.4% agreements and 67.4% disagreements.From the agreements <ul> <li>80.27% go to Mom</li> <li>3.74% go to Dad</li> <li>15.99% joint custody</li> </ul>From the disagreements <ul> <li> 84.12% of Mom's want sole custody</li> <li> 46.88% of Dad's want sole custody</li> <br><br> <li>39.76% both want Sole Custody</li> <li>44.36% of cases: Mom wants Sole; Dad joint</li> <li>7.12% of cases: Dad wants Sole; Mom joint</li> <li>1.04% of cases: Hot Potato the Kids!</li> <li>7.72% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.1 [m] => 3.6 [j] => 13.3 ) <br><br>Array ( [f] => 27.8 [m] => 32.7 [j] => 36.3 [o] => 3.2 )
Output for 5.6.6
From 1000 runs there were 29.2% agreements and 68.3% disagreements.From the agreements <ul> <li>75.68% go to Mom</li> <li>5.14% go to Dad</li> <li>19.18% joint custody</li> </ul>From the disagreements <ul> <li> 82.58% of Mom's want sole custody</li> <li> 49.05% of Dad's want sole custody</li> <br><br> <li>41.43% both want Sole Custody</li> <li>41.14% of cases: Mom wants Sole; Dad joint</li> <li>7.61% of cases: Dad wants Sole; Mom joint</li> <li>0.88% of cases: Hot Potato the Kids!</li> <li>8.93% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.5 [m] => 3.8 [j] => 15.7 ) <br><br>Array ( [f] => 27.3 [m] => 35 [j] => 35.2 [o] => 2.5 )
Output for 5.6.5
From 1000 runs there were 30.7% agreements and 66.5% disagreements.From the agreements <ul> <li>77.85% go to Mom</li> <li>3.26% go to Dad</li> <li>18.89% joint custody</li> </ul>From the disagreements <ul> <li> 84.81% of Mom's want sole custody</li> <li> 50.38% of Dad's want sole custody</li> <br><br> <li>43.16% both want Sole Custody</li> <li>41.65% of cases: Mom wants Sole; Dad joint</li> <li>7.22% of cases: Dad wants Sole; Mom joint</li> <li>0.9% of cases: Hot Potato the Kids!</li> <li>7.07% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.5 [m] => 2.5 [j] => 15 ) <br><br>Array ( [f] => 28.3 [m] => 34.5 [j] => 34.4 [o] => 2.8 )
Output for 5.6.4
From 1000 runs there were 28.7% agreements and 68.1% disagreements.From the agreements <ul> <li>78.4% go to Mom</li> <li>3.14% go to Dad</li> <li>18.47% joint custody</li> </ul>From the disagreements <ul> <li> 83.85% of Mom's want sole custody</li> <li> 49.63% of Dad's want sole custody</li> <br><br> <li>41.56% both want Sole Custody</li> <li>42.29% of cases: Mom wants Sole; Dad joint</li> <li>8.08% of cases: Dad wants Sole; Mom joint</li> <li>0.88% of cases: Hot Potato the Kids!</li> <li>7.2% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.2 [m] => 3.1 [j] => 14.7 ) <br><br>Array ( [f] => 26.6 [m] => 34.7 [j] => 35.5 [o] => 3.2 )
Output for 5.6.3
From 1000 runs there were 28.5% agreements and 68.1% disagreements.From the agreements <ul> <li>77.89% go to Mom</li> <li>5.26% go to Dad</li> <li>16.84% joint custody</li> </ul>From the disagreements <ul> <li> 86.64% of Mom's want sole custody</li> <li> 47.72% of Dad's want sole custody</li> <br><br> <li>43.32% both want Sole Custody</li> <li>43.32% of cases: Mom wants Sole; Dad joint</li> <li>4.41% of cases: Dad wants Sole; Mom joint</li> <li>1.03% of cases: Hot Potato the Kids!</li> <li>7.93% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 84.2 [m] => 3.6 [j] => 12.2 ) <br><br>Array ( [f] => 26.9 [m] => 34 [j] => 35.7 [o] => 3.4 )
Output for 5.6.2
From 1000 runs there were 30.9% agreements and 66.2% disagreements.From the agreements <ul> <li>75.73% go to Mom</li> <li>3.56% go to Dad</li> <li>20.71% joint custody</li> </ul>From the disagreements <ul> <li> 83.38% of Mom's want sole custody</li> <li> 47.58% of Dad's want sole custody</li> <br><br> <li>41.84% both want Sole Custody</li> <li>41.54% of cases: Mom wants Sole; Dad joint</li> <li>5.74% of cases: Dad wants Sole; Mom joint</li> <li>0.91% of cases: Hot Potato the Kids!</li> <li>9.97% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.2 [m] => 2.6 [j] => 16.2 ) <br><br>Array ( [f] => 29.7 [m] => 32.6 [j] => 34.8 [o] => 2.9 )
Output for 5.6.1
From 1000 runs there were 30.8% agreements and 67.4% disagreements.From the agreements <ul> <li>78.57% go to Mom</li> <li>2.6% go to Dad</li> <li>18.83% joint custody</li> </ul>From the disagreements <ul> <li> 79.97% of Mom's want sole custody</li> <li> 44.81% of Dad's want sole custody</li> <br><br> <li>37.09% both want Sole Custody</li> <li>42.88% of cases: Mom wants Sole; Dad joint</li> <li>7.72% of cases: Dad wants Sole; Mom joint</li> <li>1.63% of cases: Hot Potato the Kids!</li> <li>10.68% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 79.4 [m] => 3.6 [j] => 17 ) <br><br>Array ( [f] => 30.9 [m] => 31 [j] => 36.3 [o] => 1.8 )
Output for 5.6.0
From 1000 runs there were 28.1% agreements and 68.3% disagreements.From the agreements <ul> <li>76.87% go to Mom</li> <li>2.14% go to Dad</li> <li>21% joint custody</li> </ul>From the disagreements <ul> <li> 83.46% of Mom's want sole custody</li> <li> 47.88% of Dad's want sole custody</li> <br><br> <li>40.7% both want Sole Custody</li> <li>42.75% of cases: Mom wants Sole; Dad joint</li> <li>7.17% of cases: Dad wants Sole; Mom joint</li> <li>1.61% of cases: Hot Potato the Kids!</li> <li>7.76% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.7 [m] => 3 [j] => 15.3 ) <br><br>Array ( [f] => 26.9 [m] => 33.3 [j] => 36.2 [o] => 3.6 )
Output for 5.5.38
From 1000 runs there were 31% agreements and 65.9% disagreements.From the agreements <ul> <li>78.71% go to Mom</li> <li>2.26% go to Dad</li> <li>19.03% joint custody</li> </ul>From the disagreements <ul> <li> 84.07% of Mom's want sole custody</li> <li> 48.41% of Dad's want sole custody</li> <br><br> <li>40.06% both want Sole Custody</li> <li>44.01% of cases: Mom wants Sole; Dad joint</li> <li>8.35% of cases: Dad wants Sole; Mom joint</li> <li>1.37% of cases: Hot Potato the Kids!</li> <li>6.22% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 2.2 [j] => 15.5 ) <br><br>Array ( [f] => 28.8 [m] => 32.6 [j] => 35.5 [o] => 3.1 )
Output for 5.5.37
From 1000 runs there were 30.3% agreements and 68% disagreements.From the agreements <ul> <li>80.86% go to Mom</li> <li>2.97% go to Dad</li> <li>16.17% joint custody</li> </ul>From the disagreements <ul> <li> 85.29% of Mom's want sole custody</li> <li> 47.35% of Dad's want sole custody</li> <br><br> <li>41.47% both want Sole Custody</li> <li>43.82% of cases: Mom wants Sole; Dad joint</li> <li>5.88% of cases: Dad wants Sole; Mom joint</li> <li>1.76% of cases: Hot Potato the Kids!</li> <li>7.06% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 84.1 [m] => 3.2 [j] => 12.7 ) <br><br>Array ( [f] => 29.5 [m] => 33.1 [j] => 35.7 [o] => 1.7 )
Output for 5.5.36
From 1000 runs there were 30.6% agreements and 65.9% disagreements.From the agreements <ul> <li>76.14% go to Mom</li> <li>2.29% go to Dad</li> <li>21.57% joint custody</li> </ul>From the disagreements <ul> <li> 82.4% of Mom's want sole custody</li> <li> 51.59% of Dad's want sole custody</li> <br><br> <li>43.25% both want Sole Custody</li> <li>39.15% of cases: Mom wants Sole; Dad joint</li> <li>8.35% of cases: Dad wants Sole; Mom joint</li> <li>1.97% of cases: Hot Potato the Kids!</li> <li>7.28% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.5 [m] => 3 [j] => 16.5 ) <br><br>Array ( [f] => 28.5 [m] => 34.7 [j] => 33.3 [o] => 3.5 )
Output for 5.5.35
From 1000 runs there were 31% agreements and 66.4% disagreements.From the agreements <ul> <li>80% go to Mom</li> <li>4.19% go to Dad</li> <li>15.81% joint custody</li> </ul>From the disagreements <ul> <li> 83.73% of Mom's want sole custody</li> <li> 45.93% of Dad's want sole custody</li> <br><br> <li>38.86% both want Sole Custody</li> <li>44.88% of cases: Mom wants Sole; Dad joint</li> <li>7.08% of cases: Dad wants Sole; Mom joint</li> <li>1.51% of cases: Hot Potato the Kids!</li> <li>7.68% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.6 [m] => 3.4 [j] => 14 ) <br><br>Array ( [f] => 29.8 [m] => 31.8 [j] => 35.8 [o] => 2.6 )
Output for 5.5.34
From 1000 runs there were 30.6% agreements and 65.4% disagreements.From the agreements <ul> <li>82.35% go to Mom</li> <li>3.59% go to Dad</li> <li>14.05% joint custody</li> </ul>From the disagreements <ul> <li> 84.56% of Mom's want sole custody</li> <li> 44.95% of Dad's want sole custody</li> <br><br> <li>37.92% both want Sole Custody</li> <li>46.64% of cases: Mom wants Sole; Dad joint</li> <li>7.03% of cases: Dad wants Sole; Mom joint</li> <li>0.76% of cases: Hot Potato the Kids!</li> <li>7.65% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.6 [m] => 2.7 [j] => 13.7 ) <br><br>Array ( [f] => 29.8 [m] => 30.5 [j] => 35.7 [o] => 4 )
Output for 5.5.33
From 1000 runs there were 30.5% agreements and 66.2% disagreements.From the agreements <ul> <li>78.69% go to Mom</li> <li>3.61% go to Dad</li> <li>17.7% joint custody</li> </ul>From the disagreements <ul> <li> 81.72% of Mom's want sole custody</li> <li> 47.13% of Dad's want sole custody</li> <br><br> <li>37.46% both want Sole Custody</li> <li>44.26% of cases: Mom wants Sole; Dad joint</li> <li>9.67% of cases: Dad wants Sole; Mom joint</li> <li>1.96% of cases: Hot Potato the Kids!</li> <li>6.65% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.9 [m] => 3.3 [j] => 15.8 ) <br><br>Array ( [f] => 28.9 [m] => 32.3 [j] => 35.5 [o] => 3.3 )
Output for 5.5.32
From 1000 runs there were 30% agreements and 66.8% disagreements.From the agreements <ul> <li>80.67% go to Mom</li> <li>3% go to Dad</li> <li>16.33% joint custody</li> </ul>From the disagreements <ul> <li> 82.93% of Mom's want sole custody</li> <li> 43.86% of Dad's want sole custody</li> <br><br> <li>36.98% both want Sole Custody</li> <li>45.96% of cases: Mom wants Sole; Dad joint</li> <li>6.89% of cases: Dad wants Sole; Mom joint</li> <li>1.35% of cases: Hot Potato the Kids!</li> <li>8.83% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.5 [m] => 3.2 [j] => 14.3 ) <br><br>Array ( [f] => 29.6 [m] => 30.2 [j] => 37 [o] => 3.2 )
Output for 5.5.31
From 1000 runs there were 30% agreements and 66.8% disagreements.From the agreements <ul> <li>82% go to Mom</li> <li>3% go to Dad</li> <li>15% joint custody</li> </ul>From the disagreements <ul> <li> 81.29% of Mom's want sole custody</li> <li> 42.51% of Dad's want sole custody</li> <br><br> <li>33.23% both want Sole Custody</li> <li>48.05% of cases: Mom wants Sole; Dad joint</li> <li>9.28% of cases: Dad wants Sole; Mom joint</li> <li>1.05% of cases: Hot Potato the Kids!</li> <li>8.38% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.9 [m] => 2.9 [j] => 15.2 ) <br><br>Array ( [f] => 29.8 [m] => 29.3 [j] => 37.7 [o] => 3.2 )
Output for 5.5.30
From 1000 runs there were 29.8% agreements and 67.1% disagreements.From the agreements <ul> <li>81.54% go to Mom</li> <li>1.34% go to Dad</li> <li>17.11% joint custody</li> </ul>From the disagreements <ul> <li> 84.8% of Mom's want sole custody</li> <li> 46.35% of Dad's want sole custody</li> <br><br> <li>40.69% both want Sole Custody</li> <li>44.11% of cases: Mom wants Sole; Dad joint</li> <li>5.66% of cases: Dad wants Sole; Mom joint</li> <li>1.64% of cases: Hot Potato the Kids!</li> <li>7.9% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.4 [m] => 3.1 [j] => 13.5 ) <br><br>Array ( [f] => 29.1 [m] => 31.5 [j] => 36.3 [o] => 3.1 )
Output for 5.5.29
From 1000 runs there were 34.3% agreements and 63.3% disagreements.From the agreements <ul> <li>78.43% go to Mom</li> <li>4.08% go to Dad</li> <li>17.49% joint custody</li> </ul>From the disagreements <ul> <li> 81.67% of Mom's want sole custody</li> <li> 44.71% of Dad's want sole custody</li> <br><br> <li>37.44% both want Sole Custody</li> <li>44.23% of cases: Mom wants Sole; Dad joint</li> <li>7.27% of cases: Dad wants Sole; Mom joint</li> <li>1.26% of cases: Hot Potato the Kids!</li> <li>9.79% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.6 [m] => 3.5 [j] => 15.9 ) <br><br>Array ( [f] => 32.8 [m] => 29.7 [j] => 35.1 [o] => 2.4 )
Output for 5.5.28
From 1000 runs there were 28.8% agreements and 69.7% disagreements.From the agreements <ul> <li>80.21% go to Mom</li> <li>2.43% go to Dad</li> <li>17.36% joint custody</li> </ul>From the disagreements <ul> <li> 84.07% of Mom's want sole custody</li> <li> 45.05% of Dad's want sole custody</li> <br><br> <li>38.02% both want Sole Custody</li> <li>46.05% of cases: Mom wants Sole; Dad joint</li> <li>7.03% of cases: Dad wants Sole; Mom joint</li> <li>1.43% of cases: Hot Potato the Kids!</li> <li>7.46% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.1 [m] => 2.7 [j] => 14.2 ) <br><br>Array ( [f] => 28.3 [m] => 32.1 [j] => 38.1 [o] => 1.5 )
Output for 5.5.27
From 1000 runs there were 31.4% agreements and 66.2% disagreements.From the agreements <ul> <li>81.21% go to Mom</li> <li>3.18% go to Dad</li> <li>15.61% joint custody</li> </ul>From the disagreements <ul> <li> 83.53% of Mom's want sole custody</li> <li> 48.19% of Dad's want sole custody</li> <br><br> <li>40.94% both want Sole Custody</li> <li>42.6% of cases: Mom wants Sole; Dad joint</li> <li>7.25% of cases: Dad wants Sole; Mom joint</li> <li>1.06% of cases: Hot Potato the Kids!</li> <li>8.16% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83 [m] => 3 [j] => 14 ) <br><br>Array ( [f] => 30.3 [m] => 32.9 [j] => 34.4 [o] => 2.4 )
Output for 5.5.26
From 1000 runs there were 28.7% agreements and 67.8% disagreements.From the agreements <ul> <li>78.75% go to Mom</li> <li>3.48% go to Dad</li> <li>17.77% joint custody</li> </ul>From the disagreements <ul> <li> 83.63% of Mom's want sole custody</li> <li> 47.2% of Dad's want sole custody</li> <br><br> <li>40.27% both want Sole Custody</li> <li>43.36% of cases: Mom wants Sole; Dad joint</li> <li>6.93% of cases: Dad wants Sole; Mom joint</li> <li>1.03% of cases: Hot Potato the Kids!</li> <li>8.41% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.5 [m] => 2.4 [j] => 15.1 ) <br><br>Array ( [f] => 28.3 [m] => 33 [j] => 35.2 [o] => 3.5 )
Output for 5.5.25
From 1000 runs there were 29.1% agreements and 67.8% disagreements.From the agreements <ul> <li>78.35% go to Mom</li> <li>3.44% go to Dad</li> <li>18.21% joint custody</li> </ul>From the disagreements <ul> <li> 83.04% of Mom's want sole custody</li> <li> 45.58% of Dad's want sole custody</li> <br><br> <li>38.35% both want Sole Custody</li> <li>44.69% of cases: Mom wants Sole; Dad joint</li> <li>7.23% of cases: Dad wants Sole; Mom joint</li> <li>1.62% of cases: Hot Potato the Kids!</li> <li>8.11% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.8 [m] => 2.9 [j] => 15.3 ) <br><br>Array ( [f] => 28.6 [m] => 31.9 [j] => 36.4 [o] => 3.1 )
Output for 5.5.24
From 1000 runs there were 30.1% agreements and 66.8% disagreements.From the agreements <ul> <li>81.4% go to Mom</li> <li>3.65% go to Dad</li> <li>14.95% joint custody</li> </ul>From the disagreements <ul> <li> 84.28% of Mom's want sole custody</li> <li> 47.31% of Dad's want sole custody</li> <br><br> <li>39.97% both want Sole Custody</li> <li>44.31% of cases: Mom wants Sole; Dad joint</li> <li>7.34% of cases: Dad wants Sole; Mom joint</li> <li>1.65% of cases: Hot Potato the Kids!</li> <li>6.74% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.5 [m] => 2.9 [j] => 13.6 ) <br><br>Array ( [f] => 29.4 [m] => 32.7 [j] => 34.8 [o] => 3.1 )
Output for 5.5.23
From 1000 runs there were 29.8% agreements and 67.2% disagreements.From the agreements <ul> <li>77.52% go to Mom</li> <li>4.03% go to Dad</li> <li>18.46% joint custody</li> </ul>From the disagreements <ul> <li> 83.63% of Mom's want sole custody</li> <li> 47.17% of Dad's want sole custody</li> <br><br> <li>39.14% both want Sole Custody</li> <li>44.49% of cases: Mom wants Sole; Dad joint</li> <li>8.04% of cases: Dad wants Sole; Mom joint</li> <li>0.74% of cases: Hot Potato the Kids!</li> <li>7.59% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.6 [m] => 2.7 [j] => 15.7 ) <br><br>Array ( [f] => 27.9 [m] => 32.9 [j] => 36.2 [o] => 3 )
Output for 5.5.22
From 1000 runs there were 30.8% agreements and 66.1% disagreements.From the agreements <ul> <li>82.79% go to Mom</li> <li>3.25% go to Dad</li> <li>13.96% joint custody</li> </ul>From the disagreements <ul> <li> 83.81% of Mom's want sole custody</li> <li> 49.17% of Dad's want sole custody</li> <br><br> <li>42.21% both want Sole Custody</li> <li>41.6% of cases: Mom wants Sole; Dad joint</li> <li>6.96% of cases: Dad wants Sole; Mom joint</li> <li>1.51% of cases: Hot Potato the Kids!</li> <li>7.72% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.6 [m] => 2.8 [j] => 13.6 ) <br><br>Array ( [f] => 30.8 [m] => 33.5 [j] => 32.6 [o] => 3.1 )
Output for 5.5.21
From 1000 runs there were 30% agreements and 67.1% disagreements.From the agreements <ul> <li>80% go to Mom</li> <li>3.67% go to Dad</li> <li>16.33% joint custody</li> </ul>From the disagreements <ul> <li> 82.12% of Mom's want sole custody</li> <li> 51.71% of Dad's want sole custody</li> <br><br> <li>42.62% both want Sole Custody</li> <li>39.49% of cases: Mom wants Sole; Dad joint</li> <li>9.09% of cases: Dad wants Sole; Mom joint</li> <li>1.64% of cases: Hot Potato the Kids!</li> <li>7.15% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.5 [m] => 3.3 [j] => 15.2 ) <br><br>Array ( [f] => 28.8 [m] => 35.8 [j] => 32.5 [o] => 2.9 )
Output for 5.5.20
From 1000 runs there were 30.2% agreements and 66.1% disagreements.From the agreements <ul> <li>75.5% go to Mom</li> <li>4.3% go to Dad</li> <li>20.2% joint custody</li> </ul>From the disagreements <ul> <li> 84.57% of Mom's want sole custody</li> <li> 50.38% of Dad's want sole custody</li> <br><br> <li>42.81% both want Sole Custody</li> <li>41.75% of cases: Mom wants Sole; Dad joint</li> <li>7.56% of cases: Dad wants Sole; Mom joint</li> <li>0.61% of cases: Hot Potato the Kids!</li> <li>7.26% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.8 [m] => 2.6 [j] => 15.6 ) <br><br>Array ( [f] => 27.2 [m] => 34.6 [j] => 34.5 [o] => 3.7 )
Output for 5.5.19
From 1000 runs there were 27.6% agreements and 69.1% disagreements.From the agreements <ul> <li>80.07% go to Mom</li> <li>2.17% go to Dad</li> <li>17.75% joint custody</li> </ul>From the disagreements <ul> <li> 84.66% of Mom's want sole custody</li> <li> 51.37% of Dad's want sole custody</li> <br><br> <li>42.84% both want Sole Custody</li> <li>41.82% of cases: Mom wants Sole; Dad joint</li> <li>8.54% of cases: Dad wants Sole; Mom joint</li> <li>0.87% of cases: Hot Potato the Kids!</li> <li>5.93% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.8 [m] => 2.1 [j] => 15.1 ) <br><br>Array ( [f] => 25.9 [m] => 36.1 [j] => 34.7 [o] => 3.3 )
Output for 5.5.18
From 1000 runs there were 31% agreements and 65.7% disagreements.From the agreements <ul> <li>80.97% go to Mom</li> <li>3.23% go to Dad</li> <li>15.81% joint custody</li> </ul>From the disagreements <ul> <li> 83.11% of Mom's want sole custody</li> <li> 51.6% of Dad's want sole custody</li> <br><br> <li>42.92% both want Sole Custody</li> <li>40.18% of cases: Mom wants Sole; Dad joint</li> <li>8.68% of cases: Dad wants Sole; Mom joint</li> <li>1.37% of cases: Hot Potato the Kids!</li> <li>6.85% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.4 [m] => 2.8 [j] => 14.8 ) <br><br>Array ( [f] => 29.9 [m] => 34.9 [j] => 31.9 [o] => 3.3 )
Output for 5.5.16
From 1000 runs there were 27.4% agreements and 69.3% disagreements.From the agreements <ul> <li>85.04% go to Mom</li> <li>1.09% go to Dad</li> <li>13.87% joint custody</li> </ul>From the disagreements <ul> <li> 84.85% of Mom's want sole custody</li> <li> 49.06% of Dad's want sole custody</li> <br><br> <li>43% both want Sole Custody</li> <li>41.85% of cases: Mom wants Sole; Dad joint</li> <li>6.06% of cases: Dad wants Sole; Mom joint</li> <li>0.87% of cases: Hot Potato the Kids!</li> <li>8.23% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 84.9 [m] => 2 [j] => 13.1 ) <br><br>Array ( [f] => 28.5 [m] => 34.3 [j] => 33.9 [o] => 3.3 )
Output for 5.5.15
From 1000 runs there were 29.5% agreements and 67% disagreements.From the agreements <ul> <li>77.29% go to Mom</li> <li>2.37% go to Dad</li> <li>20.34% joint custody</li> </ul>From the disagreements <ul> <li> 83.73% of Mom's want sole custody</li> <li> 48.51% of Dad's want sole custody</li> <br><br> <li>41.04% both want Sole Custody</li> <li>42.69% of cases: Mom wants Sole; Dad joint</li> <li>7.46% of cases: Dad wants Sole; Mom joint</li> <li>1.34% of cases: Hot Potato the Kids!</li> <li>7.46% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.7 [m] => 2.9 [j] => 15.4 ) <br><br>Array ( [f] => 27.6 [m] => 33.2 [j] => 35.7 [o] => 3.5 )
Output for 5.5.14
From 1000 runs there were 30.9% agreements and 65.7% disagreements.From the agreements <ul> <li>81.55% go to Mom</li> <li>2.27% go to Dad</li> <li>16.18% joint custody</li> </ul>From the disagreements <ul> <li> 82.95% of Mom's want sole custody</li> <li> 49.16% of Dad's want sole custody</li> <br><br> <li>40.94% both want Sole Custody</li> <li>42.01% of cases: Mom wants Sole; Dad joint</li> <li>8.22% of cases: Dad wants Sole; Mom joint</li> <li>0.76% of cases: Hot Potato the Kids!</li> <li>8.07% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.4 [m] => 2.4 [j] => 15.2 ) <br><br>Array ( [f] => 30 [m] => 33 [j] => 33.6 [o] => 3.4 )
Output for 5.5.13
From 1000 runs there were 28.3% agreements and 68.5% disagreements.From the agreements <ul> <li>79.86% go to Mom</li> <li>5.3% go to Dad</li> <li>14.84% joint custody</li> </ul>From the disagreements <ul> <li> 82.63% of Mom's want sole custody</li> <li> 49.05% of Dad's want sole custody</li> <br><br> <li>40.88% both want Sole Custody</li> <li>41.75% of cases: Mom wants Sole; Dad joint</li> <li>8.18% of cases: Dad wants Sole; Mom joint</li> <li>0.88% of cases: Hot Potato the Kids!</li> <li>8.32% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82 [m] => 3.7 [j] => 14.3 ) <br><br>Array ( [f] => 27.5 [m] => 35.1 [j] => 34.2 [o] => 3.2 )
Output for 5.5.12
From 1000 runs there were 30.8% agreements and 65.8% disagreements.From the agreements <ul> <li>82.47% go to Mom</li> <li>1.62% go to Dad</li> <li>15.91% joint custody</li> </ul>From the disagreements <ul> <li> 82.83% of Mom's want sole custody</li> <li> 47.26% of Dad's want sole custody</li> <br><br> <li>38.3% both want Sole Custody</li> <li>44.53% of cases: Mom wants Sole; Dad joint</li> <li>8.97% of cases: Dad wants Sole; Mom joint</li> <li>0.76% of cases: Hot Potato the Kids!</li> <li>7.45% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.8 [m] => 1.9 [j] => 15.3 ) <br><br>Array ( [f] => 30.1 [m] => 31.6 [j] => 34.9 [o] => 3.4 )
Output for 5.5.11
From 1000 runs there were 31.3% agreements and 65.1% disagreements.From the agreements <ul> <li>82.11% go to Mom</li> <li>2.56% go to Dad</li> <li>15.34% joint custody</li> </ul>From the disagreements <ul> <li> 84.95% of Mom's want sole custody</li> <li> 48.08% of Dad's want sole custody</li> <br><br> <li>41.78% both want Sole Custody</li> <li>43.16% of cases: Mom wants Sole; Dad joint</li> <li>6.3% of cases: Dad wants Sole; Mom joint</li> <li>1.54% of cases: Hot Potato the Kids!</li> <li>7.22% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.8 [m] => 2.8 [j] => 13.4 ) <br><br>Array ( [f] => 30.5 [m] => 32.1 [j] => 33.8 [o] => 3.6 )
Output for 5.5.10
From 1000 runs there were 29.5% agreements and 66.3% disagreements.From the agreements <ul> <li>78.98% go to Mom</li> <li>3.05% go to Dad</li> <li>17.97% joint custody</li> </ul>From the disagreements <ul> <li> 83.11% of Mom's want sole custody</li> <li> 48.72% of Dad's want sole custody</li> <br><br> <li>42.53% both want Sole Custody</li> <li>40.57% of cases: Mom wants Sole; Dad joint</li> <li>6.18% of cases: Dad wants Sole; Mom joint</li> <li>1.21% of cases: Hot Potato the Kids!</li> <li>9.5% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.9 [m] => 3.4 [j] => 14.7 ) <br><br>Array ( [f] => 28.7 [m] => 33.2 [j] => 33.9 [o] => 4.2 )
Output for 5.5.9
From 1000 runs there were 28.3% agreements and 68.7% disagreements.From the agreements <ul> <li>80.21% go to Mom</li> <li>2.47% go to Dad</li> <li>17.31% joint custody</li> </ul>From the disagreements <ul> <li> 85.15% of Mom's want sole custody</li> <li> 50.95% of Dad's want sole custody</li> <br><br> <li>43.52% both want Sole Custody</li> <li>41.63% of cases: Mom wants Sole; Dad joint</li> <li>7.42% of cases: Dad wants Sole; Mom joint</li> <li>1.16% of cases: Hot Potato the Kids!</li> <li>6.26% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.5 [m] => 2.4 [j] => 14.1 ) <br><br>Array ( [f] => 27 [m] => 35.7 [j] => 34.3 [o] => 3 )
Output for 5.5.8
From 1000 runs there were 30% agreements and 67.5% disagreements.From the agreements <ul> <li>78.33% go to Mom</li> <li>3.33% go to Dad</li> <li>18.33% joint custody</li> </ul>From the disagreements <ul> <li> 81.04% of Mom's want sole custody</li> <li> 45.93% of Dad's want sole custody</li> <br><br> <li>36.89% both want Sole Custody</li> <li>44.15% of cases: Mom wants Sole; Dad joint</li> <li>9.04% of cases: Dad wants Sole; Mom joint</li> <li>0.89% of cases: Hot Potato the Kids!</li> <li>9.04% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.2 [m] => 2.6 [j] => 17.2 ) <br><br>Array ( [f] => 29.2 [m] => 32 [j] => 36.3 [o] => 2.5 )
Output for 5.5.7
From 1000 runs there were 32% agreements and 64.7% disagreements.From the agreements <ul> <li>80.94% go to Mom</li> <li>3.13% go to Dad</li> <li>15.94% joint custody</li> </ul>From the disagreements <ul> <li> 84.23% of Mom's want sole custody</li> <li> 47.91% of Dad's want sole custody</li> <br><br> <li>41.11% both want Sole Custody</li> <li>43.12% of cases: Mom wants Sole; Dad joint</li> <li>6.8% of cases: Dad wants Sole; Mom joint</li> <li>1.24% of cases: Hot Potato the Kids!</li> <li>7.73% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.9 [m] => 3 [j] => 14.1 ) <br><br>Array ( [f] => 30.6 [m] => 32 [j] => 34.1 [o] => 3.3 )
Output for 5.5.6
From 1000 runs there were 29.8% agreements and 67.2% disagreements.From the agreements <ul> <li>81.88% go to Mom</li> <li>4.03% go to Dad</li> <li>14.09% joint custody</li> </ul>From the disagreements <ul> <li> 81.85% of Mom's want sole custody</li> <li> 48.36% of Dad's want sole custody</li> <br><br> <li>40.03% both want Sole Custody</li> <li>41.82% of cases: Mom wants Sole; Dad joint</li> <li>8.33% of cases: Dad wants Sole; Mom joint</li> <li>0.89% of cases: Hot Potato the Kids!</li> <li>8.93% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.8 [m] => 3.1 [j] => 15.1 ) <br><br>Array ( [f] => 29.9 [m] => 33.7 [j] => 33.4 [o] => 3 )
Output for 5.5.5
From 1000 runs there were 28.9% agreements and 68.9% disagreements.From the agreements <ul> <li>75.43% go to Mom</li> <li>3.11% go to Dad</li> <li>21.45% joint custody</li> </ul>From the disagreements <ul> <li> 83.16% of Mom's want sole custody</li> <li> 47.9% of Dad's want sole custody</li> <br><br> <li>41.22% both want Sole Custody</li> <li>41.94% of cases: Mom wants Sole; Dad joint</li> <li>6.68% of cases: Dad wants Sole; Mom joint</li> <li>1.45% of cases: Hot Potato the Kids!</li> <li>8.71% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.7 [m] => 2.9 [j] => 16.4 ) <br><br>Array ( [f] => 27.8 [m] => 33.9 [j] => 36.1 [o] => 2.2 )
Output for 5.5.4
From 1000 runs there were 30.1% agreements and 67.1% disagreements.From the agreements <ul> <li>77.08% go to Mom</li> <li>3.65% go to Dad</li> <li>19.27% joint custody</li> </ul>From the disagreements <ul> <li> 84.8% of Mom's want sole custody</li> <li> 45.9% of Dad's want sole custody</li> <br><br> <li>41.43% both want Sole Custody</li> <li>43.37% of cases: Mom wants Sole; Dad joint</li> <li>4.47% of cases: Dad wants Sole; Mom joint</li> <li>0.75% of cases: Hot Potato the Kids!</li> <li>9.99% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 3.5 [j] => 14.4 ) <br><br>Array ( [f] => 28.8 [m] => 31.9 [j] => 36.5 [o] => 2.8 )
Output for 5.5.3
From 1000 runs there were 27.9% agreements and 69% disagreements.From the agreements <ul> <li>78.85% go to Mom</li> <li>2.51% go to Dad</li> <li>18.64% joint custody</li> </ul>From the disagreements <ul> <li> 82.46% of Mom's want sole custody</li> <li> 45.07% of Dad's want sole custody</li> <br><br> <li>37.25% both want Sole Custody</li> <li>45.22% of cases: Mom wants Sole; Dad joint</li> <li>7.83% of cases: Dad wants Sole; Mom joint</li> <li>1.16% of cases: Hot Potato the Kids!</li> <li>8.55% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.1 [m] => 2.3 [j] => 16.6 ) <br><br>Array ( [f] => 28 [m] => 31.8 [j] => 37.1 [o] => 3.1 )
Output for 5.5.2
From 1000 runs there were 30% agreements and 67.3% disagreements.From the agreements <ul> <li>81.33% go to Mom</li> <li>3.67% go to Dad</li> <li>15% joint custody</li> </ul>From the disagreements <ul> <li> 81.28% of Mom's want sole custody</li> <li> 45.47% of Dad's want sole custody</li> <br><br> <li>36.26% both want Sole Custody</li> <li>45.02% of cases: Mom wants Sole; Dad joint</li> <li>9.21% of cases: Dad wants Sole; Mom joint</li> <li>1.93% of cases: Hot Potato the Kids!</li> <li>7.58% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.3 [m] => 3.9 [j] => 14.8 ) <br><br>Array ( [f] => 29.4 [m] => 31.7 [j] => 36.2 [o] => 2.7 )
Output for 5.5.1
From 1000 runs there were 31.8% agreements and 65.1% disagreements.From the agreements <ul> <li>79.56% go to Mom</li> <li>2.52% go to Dad</li> <li>17.92% joint custody</li> </ul>From the disagreements <ul> <li> 82.64% of Mom's want sole custody</li> <li> 42.24% of Dad's want sole custody</li> <br><br> <li>35.64% both want Sole Custody</li> <li>47% of cases: Mom wants Sole; Dad joint</li> <li>6.61% of cases: Dad wants Sole; Mom joint</li> <li>1.69% of cases: Hot Potato the Kids!</li> <li>9.06% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.7 [m] => 3.2 [j] => 15.1 ) <br><br>Array ( [f] => 31.1 [m] => 28.3 [j] => 37.5 [o] => 3.1 )
Output for 5.5.0
From 1000 runs there were 31% agreements and 65.2% disagreements.From the agreements <ul> <li>73.55% go to Mom</li> <li>3.87% go to Dad</li> <li>22.58% joint custody</li> </ul>From the disagreements <ul> <li> 82.67% of Mom's want sole custody</li> <li> 47.7% of Dad's want sole custody</li> <br><br> <li>40.03% both want Sole Custody</li> <li>42.64% of cases: Mom wants Sole; Dad joint</li> <li>7.67% of cases: Dad wants Sole; Mom joint</li> <li>1.53% of cases: Hot Potato the Kids!</li> <li>8.13% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 79.8 [m] => 3.5 [j] => 16.7 ) <br><br>Array ( [f] => 28.2 [m] => 32.3 [j] => 35.7 [o] => 3.8 )
Output for 5.4.45
From 1000 runs there were 29.5% agreements and 67% disagreements.From the agreements <ul> <li>82.03% go to Mom</li> <li>1.02% go to Dad</li> <li>16.95% joint custody</li> </ul>From the disagreements <ul> <li> 85.07% of Mom's want sole custody</li> <li> 43.88% of Dad's want sole custody</li> <br><br> <li>38.21% both want Sole Custody</li> <li>46.87% of cases: Mom wants Sole; Dad joint</li> <li>5.67% of cases: Dad wants Sole; Mom joint</li> <li>1.04% of cases: Hot Potato the Kids!</li> <li>8.21% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.9 [m] => 1.9 [j] => 14.2 ) <br><br>Array ( [f] => 29.6 [m] => 29.7 [j] => 37.2 [o] => 3.5 )
Output for 5.4.44
From 1000 runs there were 29.7% agreements and 67.3% disagreements.From the agreements <ul> <li>83.5% go to Mom</li> <li>3.37% go to Dad</li> <li>13.13% joint custody</li> </ul>From the disagreements <ul> <li> 83.51% of Mom's want sole custody</li> <li> 44.87% of Dad's want sole custody</li> <br><br> <li>37.59% both want Sole Custody</li> <li>45.91% of cases: Mom wants Sole; Dad joint</li> <li>7.28% of cases: Dad wants Sole; Mom joint</li> <li>1.19% of cases: Hot Potato the Kids!</li> <li>8.02% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.1 [m] => 3 [j] => 13.9 ) <br><br>Array ( [f] => 30.1 [m] => 31.2 [j] => 35.7 [o] => 3 )
Output for 5.4.43
From 1000 runs there were 29.3% agreements and 68% disagreements.From the agreements <ul> <li>77.82% go to Mom</li> <li>3.07% go to Dad</li> <li>19.11% joint custody</li> </ul>From the disagreements <ul> <li> 82.5% of Mom's want sole custody</li> <li> 46.47% of Dad's want sole custody</li> <br><br> <li>38.53% both want Sole Custody</li> <li>43.97% of cases: Mom wants Sole; Dad joint</li> <li>7.94% of cases: Dad wants Sole; Mom joint</li> <li>1.18% of cases: Hot Potato the Kids!</li> <li>8.38% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81 [m] => 2.5 [j] => 16.5 ) <br><br>Array ( [f] => 28.5 [m] => 32.5 [j] => 36.3 [o] => 2.7 )
Output for 5.4.42
From 1000 runs there were 31.5% agreements and 65% disagreements.From the agreements <ul> <li>80% go to Mom</li> <li>3.17% go to Dad</li> <li>16.83% joint custody</li> </ul>From the disagreements <ul> <li> 84% of Mom's want sole custody</li> <li> 47.23% of Dad's want sole custody</li> <br><br> <li>40.15% both want Sole Custody</li> <li>43.85% of cases: Mom wants Sole; Dad joint</li> <li>7.08% of cases: Dad wants Sole; Mom joint</li> <li>1.38% of cases: Hot Potato the Kids!</li> <li>7.54% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 2.9 [j] => 15 ) <br><br>Array ( [f] => 30.2 [m] => 31.7 [j] => 34.6 [o] => 3.5 )
Output for 5.4.41
From 1000 runs there were 28.9% agreements and 67.9% disagreements.From the agreements <ul> <li>80.28% go to Mom</li> <li>3.81% go to Dad</li> <li>15.92% joint custody</li> </ul>From the disagreements <ul> <li> 83.95% of Mom's want sole custody</li> <li> 50.22% of Dad's want sole custody</li> <br><br> <li>43.15% both want Sole Custody</li> <li>40.8% of cases: Mom wants Sole; Dad joint</li> <li>7.07% of cases: Dad wants Sole; Mom joint</li> <li>1.03% of cases: Hot Potato the Kids!</li> <li>7.95% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.7 [m] => 3.1 [j] => 14.2 ) <br><br>Array ( [f] => 28.1 [m] => 35.2 [j] => 33.5 [o] => 3.2 )
Output for 5.4.40
From 1000 runs there were 27.4% agreements and 69.9% disagreements.From the agreements <ul> <li>77.01% go to Mom</li> <li>2.55% go to Dad</li> <li>20.44% joint custody</li> </ul>From the disagreements <ul> <li> 82.83% of Mom's want sole custody</li> <li> 47.5% of Dad's want sole custody</li> <br><br> <li>40.63% both want Sole Custody</li> <li>42.2% of cases: Mom wants Sole; Dad joint</li> <li>6.87% of cases: Dad wants Sole; Mom joint</li> <li>0.72% of cases: Hot Potato the Kids!</li> <li>9.59% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.8 [m] => 2.4 [j] => 16.8 ) <br><br>Array ( [f] => 27.1 [m] => 33.9 [j] => 36.3 [o] => 2.7 )
Output for 5.4.39
From 1000 runs there were 30.1% agreements and 66.7% disagreements.From the agreements <ul> <li>83.39% go to Mom</li> <li>3.65% go to Dad</li> <li>12.96% joint custody</li> </ul>From the disagreements <ul> <li> 83.36% of Mom's want sole custody</li> <li> 43.93% of Dad's want sole custody</li> <br><br> <li>37.18% both want Sole Custody</li> <li>46.18% of cases: Mom wants Sole; Dad joint</li> <li>6.75% of cases: Dad wants Sole; Mom joint</li> <li>1.2% of cases: Hot Potato the Kids!</li> <li>8.7% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.2 [m] => 3.6 [j] => 13.2 ) <br><br>Array ( [f] => 30.1 [m] => 30.4 [j] => 36.3 [o] => 3.2 )
Output for 5.4.38
From 1000 runs there were 28.7% agreements and 67.7% disagreements.From the agreements <ul> <li>78.4% go to Mom</li> <li>1.74% go to Dad</li> <li>19.86% joint custody</li> </ul>From the disagreements <ul> <li> 81.54% of Mom's want sole custody</li> <li> 50.07% of Dad's want sole custody</li> <br><br> <li>41.95% both want Sole Custody</li> <li>39.59% of cases: Mom wants Sole; Dad joint</li> <li>8.12% of cases: Dad wants Sole; Mom joint</li> <li>2.07% of cases: Hot Potato the Kids!</li> <li>8.27% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.6 [m] => 2.9 [j] => 16.5 ) <br><br>Array ( [f] => 28.5 [m] => 34.4 [j] => 33.5 [o] => 3.6 )
Output for 5.4.37
From 1000 runs there were 30.9% agreements and 66.5% disagreements.From the agreements <ul> <li>82.2% go to Mom</li> <li>2.91% go to Dad</li> <li>14.89% joint custody</li> </ul>From the disagreements <ul> <li> 83.76% of Mom's want sole custody</li> <li> 48.42% of Dad's want sole custody</li> <br><br> <li>41.35% both want Sole Custody</li> <li>42.41% of cases: Mom wants Sole; Dad joint</li> <li>7.07% of cases: Dad wants Sole; Mom joint</li> <li>1.65% of cases: Hot Potato the Kids!</li> <li>7.52% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.5 [m] => 2.7 [j] => 13.8 ) <br><br>Array ( [f] => 30.8 [m] => 33.1 [j] => 33.5 [o] => 2.6 )
Output for 5.4.36
From 1000 runs there were 31.6% agreements and 64.7% disagreements.From the agreements <ul> <li>82.28% go to Mom</li> <li>3.8% go to Dad</li> <li>13.92% joint custody</li> </ul>From the disagreements <ul> <li> 84.54% of Mom's want sole custody</li> <li> 49.3% of Dad's want sole custody</li> <br><br> <li>42.81% both want Sole Custody</li> <li>41.73% of cases: Mom wants Sole; Dad joint</li> <li>6.49% of cases: Dad wants Sole; Mom joint</li> <li>2.01% of cases: Hot Potato the Kids!</li> <li>6.96% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.7 [m] => 3.3 [j] => 13 ) <br><br>Array ( [f] => 31 [m] => 33.1 [j] => 32.2 [o] => 3.7 )
Output for 5.4.35
From 1000 runs there were 28.5% agreements and 68.7% disagreements.From the agreements <ul> <li>79.65% go to Mom</li> <li>2.81% go to Dad</li> <li>17.54% joint custody</li> </ul>From the disagreements <ul> <li> 82.39% of Mom's want sole custody</li> <li> 48.62% of Dad's want sole custody</li> <br><br> <li>40.76% both want Sole Custody</li> <li>41.63% of cases: Mom wants Sole; Dad joint</li> <li>7.86% of cases: Dad wants Sole; Mom joint</li> <li>1.89% of cases: Hot Potato the Kids!</li> <li>7.86% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81 [m] => 3.2 [j] => 15.8 ) <br><br>Array ( [f] => 28.5 [m] => 34.2 [j] => 34.5 [o] => 2.8 )
Output for 5.4.34
From 1000 runs there were 29.3% agreements and 67.5% disagreements.From the agreements <ul> <li>80.55% go to Mom</li> <li>2.39% go to Dad</li> <li>17.06% joint custody</li> </ul>From the disagreements <ul> <li> 81.78% of Mom's want sole custody</li> <li> 50.22% of Dad's want sole custody</li> <br><br> <li>40.89% both want Sole Custody</li> <li>40.89% of cases: Mom wants Sole; Dad joint</li> <li>9.33% of cases: Dad wants Sole; Mom joint</li> <li>1.04% of cases: Hot Potato the Kids!</li> <li>7.85% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.6 [m] => 2.3 [j] => 16.1 ) <br><br>Array ( [f] => 28.7 [m] => 34.6 [j] => 33.5 [o] => 3.2 )
Output for 5.4.32
From 1000 runs there were 27.5% agreements and 69.9% disagreements.From the agreements <ul> <li>80% go to Mom</li> <li>3.27% go to Dad</li> <li>16.73% joint custody</li> </ul>From the disagreements <ul> <li> 80.83% of Mom's want sole custody</li> <li> 47.21% of Dad's want sole custody</li> <br><br> <li>39.34% both want Sole Custody</li> <li>41.49% of cases: Mom wants Sole; Dad joint</li> <li>7.87% of cases: Dad wants Sole; Mom joint</li> <li>1% of cases: Hot Potato the Kids!</li> <li>10.3% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.9 [m] => 3.4 [j] => 15.7 ) <br><br>Array ( [f] => 28.1 [m] => 33.9 [j] => 35.4 [o] => 2.6 )
Output for 5.4.31
From 1000 runs there were 28.7% agreements and 68% disagreements.From the agreements <ul> <li>84.32% go to Mom</li> <li>1.39% go to Dad</li> <li>14.29% joint custody</li> </ul>From the disagreements <ul> <li> 82.65% of Mom's want sole custody</li> <li> 50% of Dad's want sole custody</li> <br><br> <li>43.38% both want Sole Custody</li> <li>39.26% of cases: Mom wants Sole; Dad joint</li> <li>6.62% of cases: Dad wants Sole; Mom joint</li> <li>1.62% of cases: Hot Potato the Kids!</li> <li>9.12% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.1 [m] => 2.8 [j] => 14.1 ) <br><br>Array ( [f] => 30.4 [m] => 34.4 [j] => 31.9 [o] => 3.3 )
Output for 5.4.30
From 1000 runs there were 30.1% agreements and 66.7% disagreements.From the agreements <ul> <li>82.06% go to Mom</li> <li>2.33% go to Dad</li> <li>15.61% joint custody</li> </ul>From the disagreements <ul> <li> 82.46% of Mom's want sole custody</li> <li> 50.37% of Dad's want sole custody</li> <br><br> <li>41.68% both want Sole Custody</li> <li>40.78% of cases: Mom wants Sole; Dad joint</li> <li>8.7% of cases: Dad wants Sole; Mom joint</li> <li>0.75% of cases: Hot Potato the Kids!</li> <li>8.1% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 2.4 [j] => 15.3 ) <br><br>Array ( [f] => 29.5 [m] => 34.3 [j] => 33 [o] => 3.2 )
Output for 5.4.29
From 1000 runs there were 28.5% agreements and 68.3% disagreements.From the agreements <ul> <li>80.35% go to Mom</li> <li>4.91% go to Dad</li> <li>14.74% joint custody</li> </ul>From the disagreements <ul> <li> 83.02% of Mom's want sole custody</li> <li> 44.95% of Dad's want sole custody</li> <br><br> <li>37.19% both want Sole Custody</li> <li>45.83% of cases: Mom wants Sole; Dad joint</li> <li>7.76% of cases: Dad wants Sole; Mom joint</li> <li>1.32% of cases: Hot Potato the Kids!</li> <li>7.91% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 3.6 [j] => 14.1 ) <br><br>Array ( [f] => 28.1 [m] => 32.1 [j] => 36.6 [o] => 3.2 )
Output for 5.4.28
From 1000 runs there were 28.7% agreements and 67.6% disagreements.From the agreements <ul> <li>82.58% go to Mom</li> <li>1.74% go to Dad</li> <li>15.68% joint custody</li> </ul>From the disagreements <ul> <li> 83.88% of Mom's want sole custody</li> <li> 48.08% of Dad's want sole custody</li> <br><br> <li>42.46% both want Sole Custody</li> <li>41.42% of cases: Mom wants Sole; Dad joint</li> <li>5.62% of cases: Dad wants Sole; Mom joint</li> <li>1.48% of cases: Hot Potato the Kids!</li> <li>9.02% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.8 [m] => 2.9 [j] => 13.3 ) <br><br>Array ( [f] => 29.6 [m] => 33 [j] => 33.7 [o] => 3.7 )
Output for 5.4.27
From 1000 runs there were 31.5% agreements and 65.3% disagreements.From the agreements <ul> <li>79.68% go to Mom</li> <li>2.86% go to Dad</li> <li>17.46% joint custody</li> </ul>From the disagreements <ul> <li> 83.31% of Mom's want sole custody</li> <li> 45.48% of Dad's want sole custody</li> <br><br> <li>38.28% both want Sole Custody</li> <li>45.02% of cases: Mom wants Sole; Dad joint</li> <li>7.2% of cases: Dad wants Sole; Mom joint</li> <li>0.61% of cases: Hot Potato the Kids!</li> <li>8.88% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 2.3 [j] => 15.4 ) <br><br>Array ( [f] => 30.3 [m] => 30.6 [j] => 35.9 [o] => 3.2 )
Output for 5.4.26
From 1000 runs there were 30.4% agreements and 67% disagreements.From the agreements <ul> <li>78.29% go to Mom</li> <li>4.28% go to Dad</li> <li>17.43% joint custody</li> </ul>From the disagreements <ul> <li> 83.43% of Mom's want sole custody</li> <li> 48.06% of Dad's want sole custody</li> <br><br> <li>40.15% both want Sole Custody</li> <li>43.28% of cases: Mom wants Sole; Dad joint</li> <li>7.91% of cases: Dad wants Sole; Mom joint</li> <li>1.79% of cases: Hot Potato the Kids!</li> <li>6.87% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82 [m] => 3.5 [j] => 14.5 ) <br><br>Array ( [f] => 28.8 [m] => 33.5 [j] => 35.1 [o] => 2.6 )
Output for 5.4.25
From 1000 runs there were 29.3% agreements and 67.7% disagreements.From the agreements <ul> <li>79.52% go to Mom</li> <li>3.41% go to Dad</li> <li>17.06% joint custody</li> </ul>From the disagreements <ul> <li> 83.16% of Mom's want sole custody</li> <li> 45.94% of Dad's want sole custody</li> <br><br> <li>38.4% both want Sole Custody</li> <li>44.76% of cases: Mom wants Sole; Dad joint</li> <li>7.53% of cases: Dad wants Sole; Mom joint</li> <li>2.95% of cases: Hot Potato the Kids!</li> <li>6.35% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82 [m] => 4.3 [j] => 13.7 ) <br><br>Array ( [f] => 28.3 [m] => 32.1 [j] => 36.6 [o] => 3 )
Output for 5.4.24
From 1000 runs there were 30.1% agreements and 66.8% disagreements.From the agreements <ul> <li>80.4% go to Mom</li> <li>4.32% go to Dad</li> <li>15.28% joint custody</li> </ul>From the disagreements <ul> <li> 82.93% of Mom's want sole custody</li> <li> 51.2% of Dad's want sole custody</li> <br><br> <li>42.96% both want Sole Custody</li> <li>39.97% of cases: Mom wants Sole; Dad joint</li> <li>8.23% of cases: Dad wants Sole; Mom joint</li> <li>1.5% of cases: Hot Potato the Kids!</li> <li>7.34% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82 [m] => 2.8 [j] => 15.2 ) <br><br>Array ( [f] => 29.9 [m] => 35.5 [j] => 31.5 [o] => 3.1 )
Output for 5.4.23
From 1000 runs there were 31.7% agreements and 65.1% disagreements.From the agreements <ul> <li>76.97% go to Mom</li> <li>4.1% go to Dad</li> <li>18.93% joint custody</li> </ul>From the disagreements <ul> <li> 84.18% of Mom's want sole custody</li> <li> 47.93% of Dad's want sole custody</li> <br><br> <li>41.17% both want Sole Custody</li> <li>43.01% of cases: Mom wants Sole; Dad joint</li> <li>6.76% of cases: Dad wants Sole; Mom joint</li> <li>1.38% of cases: Hot Potato the Kids!</li> <li>7.68% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.9 [m] => 3.1 [j] => 15 ) <br><br>Array ( [f] => 29.4 [m] => 32.5 [j] => 34.9 [o] => 3.2 )
Output for 5.4.22
From 1000 runs there were 30.3% agreements and 66.6% disagreements.From the agreements <ul> <li>82.84% go to Mom</li> <li>1.32% go to Dad</li> <li>15.84% joint custody</li> </ul>From the disagreements <ul> <li> 83.03% of Mom's want sole custody</li> <li> 46.55% of Dad's want sole custody</li> <br><br> <li>38.74% both want Sole Custody</li> <li>44.29% of cases: Mom wants Sole; Dad joint</li> <li>7.81% of cases: Dad wants Sole; Mom joint</li> <li>1.2% of cases: Hot Potato the Kids!</li> <li>7.96% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.1 [m] => 1.7 [j] => 15.2 ) <br><br>Array ( [f] => 30.7 [m] => 31.4 [j] => 34.8 [o] => 3.1 )
Output for 5.4.21
From 1000 runs there were 29.1% agreements and 69.1% disagreements.From the agreements <ul> <li>79.04% go to Mom</li> <li>3.09% go to Dad</li> <li>17.87% joint custody</li> </ul>From the disagreements <ul> <li> 82.92% of Mom's want sole custody</li> <li> 51.23% of Dad's want sole custody</li> <br><br> <li>42.4% both want Sole Custody</li> <li>40.52% of cases: Mom wants Sole; Dad joint</li> <li>8.83% of cases: Dad wants Sole; Mom joint</li> <li>1.16% of cases: Hot Potato the Kids!</li> <li>7.09% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 2.5 [j] => 15.4 ) <br><br>Array ( [f] => 27.9 [m] => 36.3 [j] => 34 [o] => 1.8 )
Output for 5.4.20
From 1000 runs there were 29.5% agreements and 67.4% disagreements.From the agreements <ul> <li>79.32% go to Mom</li> <li>3.05% go to Dad</li> <li>17.63% joint custody</li> </ul>From the disagreements <ul> <li> 83.53% of Mom's want sole custody</li> <li> 47.77% of Dad's want sole custody</li> <br><br> <li>39.61% both want Sole Custody</li> <li>43.92% of cases: Mom wants Sole; Dad joint</li> <li>8.16% of cases: Dad wants Sole; Mom joint</li> <li>1.04% of cases: Hot Potato the Kids!</li> <li>7.27% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.7 [m] => 2.8 [j] => 15.5 ) <br><br>Array ( [f] => 28 [m] => 33.1 [j] => 35.8 [o] => 3.1 )
Output for 5.4.19
From 1000 runs there were 32% agreements and 64.6% disagreements.From the agreements <ul> <li>79.06% go to Mom</li> <li>2.5% go to Dad</li> <li>18.44% joint custody</li> </ul>From the disagreements <ul> <li> 82.82% of Mom's want sole custody</li> <li> 46.9% of Dad's want sole custody</li> <br><br> <li>38.7% both want Sole Custody</li> <li>44.12% of cases: Mom wants Sole; Dad joint</li> <li>8.2% of cases: Dad wants Sole; Mom joint</li> <li>1.08% of cases: Hot Potato the Kids!</li> <li>7.89% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.7 [m] => 3 [j] => 15.3 ) <br><br>Array ( [f] => 29.6 [m] => 31.1 [j] => 35.9 [o] => 3.4 )
Output for 5.4.18
From 1000 runs there were 30.5% agreements and 66% disagreements.From the agreements <ul> <li>77.05% go to Mom</li> <li>5.9% go to Dad</li> <li>17.05% joint custody</li> </ul>From the disagreements <ul> <li> 83.94% of Mom's want sole custody</li> <li> 49.55% of Dad's want sole custody</li> <br><br> <li>42.12% both want Sole Custody</li> <li>41.82% of cases: Mom wants Sole; Dad joint</li> <li>7.42% of cases: Dad wants Sole; Mom joint</li> <li>1.21% of cases: Hot Potato the Kids!</li> <li>7.42% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82 [m] => 3.7 [j] => 14.3 ) <br><br>Array ( [f] => 28.2 [m] => 34.5 [j] => 33.8 [o] => 3.5 )
Output for 5.4.17
From 1000 runs there were 28.4% agreements and 67.9% disagreements.From the agreements <ul> <li>82.39% go to Mom</li> <li>3.17% go to Dad</li> <li>14.44% joint custody</li> </ul>From the disagreements <ul> <li> 81.74% of Mom's want sole custody</li> <li> 47.28% of Dad's want sole custody</li> <br><br> <li>40.8% both want Sole Custody</li> <li>40.94% of cases: Mom wants Sole; Dad joint</li> <li>6.48% of cases: Dad wants Sole; Mom joint</li> <li>1.62% of cases: Hot Potato the Kids!</li> <li>10.16% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.8 [m] => 3.6 [j] => 14.6 ) <br><br>Array ( [f] => 30.2 [m] => 33 [j] => 33.1 [o] => 3.7 )
Output for 5.4.16
From 1000 runs there were 29.9% agreements and 67.1% disagreements.From the agreements <ul> <li>80.6% go to Mom</li> <li>3.01% go to Dad</li> <li>16.39% joint custody</li> </ul>From the disagreements <ul> <li> 80.63% of Mom's want sole custody</li> <li> 47.09% of Dad's want sole custody</li> <br><br> <li>38.6% both want Sole Custody</li> <li>42.03% of cases: Mom wants Sole; Dad joint</li> <li>8.49% of cases: Dad wants Sole; Mom joint</li> <li>1.49% of cases: Hot Potato the Kids!</li> <li>9.39% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.6 [m] => 2.8 [j] => 16.6 ) <br><br>Array ( [f] => 30.6 [m] => 32.5 [j] => 33.9 [o] => 3 )
Output for 5.4.15
From 1000 runs there were 29.7% agreements and 67.1% disagreements.From the agreements <ul> <li>80.13% go to Mom</li> <li>3.37% go to Dad</li> <li>16.5% joint custody</li> </ul>From the disagreements <ul> <li> 82.27% of Mom's want sole custody</li> <li> 44.86% of Dad's want sole custody</li> <br><br> <li>37.26% both want Sole Custody</li> <li>45.01% of cases: Mom wants Sole; Dad joint</li> <li>7.6% of cases: Dad wants Sole; Mom joint</li> <li>1.04% of cases: Hot Potato the Kids!</li> <li>9.09% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.4 [m] => 3.4 [j] => 15.2 ) <br><br>Array ( [f] => 29.3 [m] => 31.1 [j] => 36.4 [o] => 3.2 )
Output for 5.4.14
From 1000 runs there were 31.2% agreements and 65.7% disagreements.From the agreements <ul> <li>76.28% go to Mom</li> <li>3.85% go to Dad</li> <li>19.87% joint custody</li> </ul>From the disagreements <ul> <li> 84.63% of Mom's want sole custody</li> <li> 46.12% of Dad's want sole custody</li> <br><br> <li>39.57% both want Sole Custody</li> <li>45.05% of cases: Mom wants Sole; Dad joint</li> <li>6.54% of cases: Dad wants Sole; Mom joint</li> <li>1.52% of cases: Hot Potato the Kids!</li> <li>7.31% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.7 [m] => 3.2 [j] => 15.1 ) <br><br>Array ( [f] => 28.8 [m] => 31.5 [j] => 36.6 [o] => 3.1 )
Output for 5.4.13
From 1000 runs there were 29.5% agreements and 66.7% disagreements.From the agreements <ul> <li>79.66% go to Mom</li> <li>4.41% go to Dad</li> <li>15.93% joint custody</li> </ul>From the disagreements <ul> <li> 83.81% of Mom's want sole custody</li> <li> 47.38% of Dad's want sole custody</li> <br><br> <li>40.33% both want Sole Custody</li> <li>43.48% of cases: Mom wants Sole; Dad joint</li> <li>7.05% of cases: Dad wants Sole; Mom joint</li> <li>0.75% of cases: Hot Potato the Kids!</li> <li>8.4% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.5 [m] => 3 [j] => 14.5 ) <br><br>Array ( [f] => 28.4 [m] => 32.9 [j] => 34.9 [o] => 3.8 )
Output for 5.4.12
From 1000 runs there were 29.4% agreements and 66.6% disagreements.From the agreements <ul> <li>79.59% go to Mom</li> <li>3.06% go to Dad</li> <li>17.35% joint custody</li> </ul>From the disagreements <ul> <li> 83.48% of Mom's want sole custody</li> <li> 46.85% of Dad's want sole custody</li> <br><br> <li>39.19% both want Sole Custody</li> <li>44.29% of cases: Mom wants Sole; Dad joint</li> <li>7.66% of cases: Dad wants Sole; Mom joint</li> <li>1.05% of cases: Hot Potato the Kids!</li> <li>7.81% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 2.5 [j] => 15.2 ) <br><br>Array ( [f] => 28.5 [m] => 32.1 [j] => 35.4 [o] => 4 )
Output for 5.4.11
From 1000 runs there were 30.9% agreements and 65.6% disagreements.From the agreements <ul> <li>77.35% go to Mom</li> <li>3.56% go to Dad</li> <li>19.09% joint custody</li> </ul>From the disagreements <ul> <li> 82.47% of Mom's want sole custody</li> <li> 42.99% of Dad's want sole custody</li> <br><br> <li>35.67% both want Sole Custody</li> <li>46.8% of cases: Mom wants Sole; Dad joint</li> <li>7.32% of cases: Dad wants Sole; Mom joint</li> <li>1.07% of cases: Hot Potato the Kids!</li> <li>9.15% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.9 [m] => 3.6 [j] => 15.5 ) <br><br>Array ( [f] => 29 [m] => 29.3 [j] => 38.2 [o] => 3.5 )
Output for 5.4.10
From 1000 runs there were 29.4% agreements and 66.9% disagreements.From the agreements <ul> <li>77.21% go to Mom</li> <li>4.08% go to Dad</li> <li>18.71% joint custody</li> </ul>From the disagreements <ul> <li> 83.26% of Mom's want sole custody</li> <li> 44.99% of Dad's want sole custody</li> <br><br> <li>38.12% both want Sole Custody</li> <li>45.14% of cases: Mom wants Sole; Dad joint</li> <li>6.88% of cases: Dad wants Sole; Mom joint</li> <li>2.24% of cases: Hot Potato the Kids!</li> <li>7.62% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.6 [m] => 3.7 [j] => 14.7 ) <br><br>Array ( [f] => 28.4 [m] => 31.3 [j] => 36.6 [o] => 3.7 )
Output for 5.4.9
From 1000 runs there were 29.6% agreements and 66.9% disagreements.From the agreements <ul> <li>80.74% go to Mom</li> <li>3.04% go to Dad</li> <li>16.22% joint custody</li> </ul>From the disagreements <ul> <li> 82.21% of Mom's want sole custody</li> <li> 47.09% of Dad's want sole custody</li> <br><br> <li>40.51% both want Sole Custody</li> <li>41.7% of cases: Mom wants Sole; Dad joint</li> <li>6.58% of cases: Dad wants Sole; Mom joint</li> <li>1.05% of cases: Hot Potato the Kids!</li> <li>10.16% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 2.6 [j] => 15.3 ) <br><br>Array ( [f] => 30.4 [m] => 32.4 [j] => 33.7 [o] => 3.5 )
Output for 5.4.8
From 1000 runs there were 29.6% agreements and 67.7% disagreements.From the agreements <ul> <li>77.03% go to Mom</li> <li>5.07% go to Dad</li> <li>17.91% joint custody</li> </ul>From the disagreements <ul> <li> 82.72% of Mom's want sole custody</li> <li> 48.15% of Dad's want sole custody</li> <br><br> <li>40.62% both want Sole Custody</li> <li>42.1% of cases: Mom wants Sole; Dad joint</li> <li>7.53% of cases: Dad wants Sole; Mom joint</li> <li>1.62% of cases: Hot Potato the Kids!</li> <li>8.12% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.2 [m] => 4 [j] => 14.8 ) <br><br>Array ( [f] => 28.1 [m] => 34.1 [j] => 35.1 [o] => 2.7 )
Output for 5.4.7
From 1000 runs there were 31.2% agreements and 66.2% disagreements.From the agreements <ul> <li>79.81% go to Mom</li> <li>3.21% go to Dad</li> <li>16.99% joint custody</li> </ul>From the disagreements <ul> <li> 85.05% of Mom's want sole custody</li> <li> 45.17% of Dad's want sole custody</li> <br><br> <li>38.37% both want Sole Custody</li> <li>46.68% of cases: Mom wants Sole; Dad joint</li> <li>6.8% of cases: Dad wants Sole; Mom joint</li> <li>1.06% of cases: Hot Potato the Kids!</li> <li>7.1% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.2 [m] => 2.7 [j] => 14.1 ) <br><br>Array ( [f] => 29.4 [m] => 30.9 [j] => 37.1 [o] => 2.6 )
Output for 5.4.6
From 1000 runs there were 27.8% agreements and 69.3% disagreements.From the agreements <ul> <li>73.38% go to Mom</li> <li>5.04% go to Dad</li> <li>21.58% joint custody</li> </ul>From the disagreements <ul> <li> 83.55% of Mom's want sole custody</li> <li> 49.06% of Dad's want sole custody</li> <br><br> <li>42.42% both want Sole Custody</li> <li>41.13% of cases: Mom wants Sole; Dad joint</li> <li>6.64% of cases: Dad wants Sole; Mom joint</li> <li>1.3% of cases: Hot Potato the Kids!</li> <li>8.51% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.9 [m] => 3.2 [j] => 15.9 ) <br><br>Array ( [f] => 26.4 [m] => 35.4 [j] => 35.3 [o] => 2.9 )
Output for 5.4.5
From 1000 runs there were 30.2% agreements and 66.3% disagreements.From the agreements <ul> <li>78.15% go to Mom</li> <li>2.65% go to Dad</li> <li>19.21% joint custody</li> </ul>From the disagreements <ul> <li> 81.45% of Mom's want sole custody</li> <li> 47.66% of Dad's want sole custody</li> <br><br> <li>38.46% both want Sole Custody</li> <li>42.99% of cases: Mom wants Sole; Dad joint</li> <li>9.2% of cases: Dad wants Sole; Mom joint</li> <li>1.51% of cases: Hot Potato the Kids!</li> <li>7.84% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.4 [m] => 3.2 [j] => 16.4 ) <br><br>Array ( [f] => 28.5 [m] => 32.4 [j] => 35.6 [o] => 3.5 )
Output for 5.4.4
From 1000 runs there were 30.1% agreements and 67% disagreements.From the agreements <ul> <li>75.08% go to Mom</li> <li>4.98% go to Dad</li> <li>19.93% joint custody</li> </ul>From the disagreements <ul> <li> 83.88% of Mom's want sole custody</li> <li> 46.57% of Dad's want sole custody</li> <br><br> <li>39.7% both want Sole Custody</li> <li>44.18% of cases: Mom wants Sole; Dad joint</li> <li>6.87% of cases: Dad wants Sole; Mom joint</li> <li>1.04% of cases: Hot Potato the Kids!</li> <li>8.21% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.5 [m] => 3.3 [j] => 15.2 ) <br><br>Array ( [f] => 27.7 [m] => 32.7 [j] => 36.7 [o] => 2.9 )
Output for 5.4.3
From 1000 runs there were 30.2% agreements and 66.7% disagreements.From the agreements <ul> <li>79.8% go to Mom</li> <li>2.32% go to Dad</li> <li>17.88% joint custody</li> </ul>From the disagreements <ul> <li> 81.86% of Mom's want sole custody</li> <li> 44.08% of Dad's want sole custody</li> <br><br> <li>36.28% both want Sole Custody</li> <li>45.58% of cases: Mom wants Sole; Dad joint</li> <li>7.8% of cases: Dad wants Sole; Mom joint</li> <li>1.95% of cases: Hot Potato the Kids!</li> <li>8.4% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.2 [m] => 3.3 [j] => 15.5 ) <br><br>Array ( [f] => 29.8 [m] => 30.1 [j] => 37 [o] => 3.1 )
Output for 5.4.2
From 1000 runs there were 29.6% agreements and 68.3% disagreements.From the agreements <ul> <li>79.39% go to Mom</li> <li>2.7% go to Dad</li> <li>17.91% joint custody</li> </ul>From the disagreements <ul> <li> 80.67% of Mom's want sole custody</li> <li> 47.58% of Dad's want sole custody</li> <br><br> <li>39.39% both want Sole Custody</li> <li>41.29% of cases: Mom wants Sole; Dad joint</li> <li>8.2% of cases: Dad wants Sole; Mom joint</li> <li>2.05% of cases: Hot Potato the Kids!</li> <li>9.08% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.3 [m] => 2.9 [j] => 16.8 ) <br><br>Array ( [f] => 30.4 [m] => 33.3 [j] => 34.2 [o] => 2.1 )
Output for 5.4.1
From 1000 runs there were 31.3% agreements and 65.5% disagreements.From the agreements <ul> <li>80.83% go to Mom</li> <li>2.56% go to Dad</li> <li>16.61% joint custody</li> </ul>From the disagreements <ul> <li> 84.27% of Mom's want sole custody</li> <li> 52.21% of Dad's want sole custody</li> <br><br> <li>45.5% both want Sole Custody</li> <li>38.78% of cases: Mom wants Sole; Dad joint</li> <li>6.72% of cases: Dad wants Sole; Mom joint</li> <li>0.61% of cases: Hot Potato the Kids!</li> <li>8.4% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.3 [m] => 2.7 [j] => 14 ) <br><br>Array ( [f] => 29.8 [m] => 35 [j] => 32 [o] => 3.2 )
Output for 5.4.0
From 1000 runs there were 29.5% agreements and 68.1% disagreements.From the agreements <ul> <li>78.98% go to Mom</li> <li>3.73% go to Dad</li> <li>17.29% joint custody</li> </ul>From the disagreements <ul> <li> 83.26% of Mom's want sole custody</li> <li> 50.66% of Dad's want sole custody</li> <br><br> <li>41.56% both want Sole Custody</li> <li>41.7% of cases: Mom wants Sole; Dad joint</li> <li>9.1% of cases: Dad wants Sole; Mom joint</li> <li>0.88% of cases: Hot Potato the Kids!</li> <li>6.75% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 2.8 [j] => 15.1 ) <br><br>Array ( [f] => 27.4 [m] => 35.6 [j] => 34.6 [o] => 2.4 )
Output for 5.3.29
From 1000 runs there were 31.5% agreements and 66.1% disagreements.From the agreements <ul> <li>77.14% go to Mom</li> <li>3.81% go to Dad</li> <li>19.05% joint custody</li> </ul>From the disagreements <ul> <li> 85.33% of Mom's want sole custody</li> <li> 49.47% of Dad's want sole custody</li> <br><br> <li>42.66% both want Sole Custody</li> <li>42.66% of cases: Mom wants Sole; Dad joint</li> <li>6.81% of cases: Dad wants Sole; Mom joint</li> <li>1.06% of cases: Hot Potato the Kids!</li> <li>6.81% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.6 [m] => 2.8 [j] => 14.6 ) <br><br>Array ( [f] => 28.7 [m] => 33.9 [j] => 35 [o] => 2.4 )
Output for 5.3.28
From 1000 runs there were 31.6% agreements and 65% disagreements.From the agreements <ul> <li>76.9% go to Mom</li> <li>2.22% go to Dad</li> <li>20.89% joint custody</li> </ul>From the disagreements <ul> <li> 83.54% of Mom's want sole custody</li> <li> 49.54% of Dad's want sole custody</li> <br><br> <li>41.54% both want Sole Custody</li> <li>42% of cases: Mom wants Sole; Dad joint</li> <li>8% of cases: Dad wants Sole; Mom joint</li> <li>1.08% of cases: Hot Potato the Kids!</li> <li>7.38% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.2 [m] => 2.3 [j] => 16.5 ) <br><br>Array ( [f] => 28.9 [m] => 32.9 [j] => 34.8 [o] => 3.4 )
Output for 5.3.27
From 1000 runs there were 29.8% agreements and 66.8% disagreements.From the agreements <ul> <li>79.87% go to Mom</li> <li>3.36% go to Dad</li> <li>16.78% joint custody</li> </ul>From the disagreements <ul> <li> 82.19% of Mom's want sole custody</li> <li> 50.3% of Dad's want sole custody</li> <br><br> <li>42.22% both want Sole Custody</li> <li>39.97% of cases: Mom wants Sole; Dad joint</li> <li>8.08% of cases: Dad wants Sole; Mom joint</li> <li>1.35% of cases: Hot Potato the Kids!</li> <li>8.38% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.1 [m] => 3.6 [j] => 15.3 ) <br><br>Array ( [f] => 28.9 [m] => 34.6 [j] => 33.1 [o] => 3.4 )
Output for 5.3.26
From 1000 runs there were 28.7% agreements and 67.7% disagreements.From the agreements <ul> <li>78.05% go to Mom</li> <li>2.44% go to Dad</li> <li>19.51% joint custody</li> </ul>From the disagreements <ul> <li> 80.5% of Mom's want sole custody</li> <li> 50.07% of Dad's want sole custody</li> <br><br> <li>40.77% both want Sole Custody</li> <li>39.73% of cases: Mom wants Sole; Dad joint</li> <li>9.31% of cases: Dad wants Sole; Mom joint</li> <li>1.62% of cases: Hot Potato the Kids!</li> <li>8.57% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 79.7 [m] => 2.7 [j] => 17.6 ) <br><br>Array ( [f] => 28.5 [m] => 34.6 [j] => 33.3 [o] => 3.6 )
Output for 5.3.25
From 1000 runs there were 27.9% agreements and 69.4% disagreements.From the agreements <ul> <li>78.85% go to Mom</li> <li>2.15% go to Dad</li> <li>19% joint custody</li> </ul>From the disagreements <ul> <li> 84.58% of Mom's want sole custody</li> <li> 46.54% of Dad's want sole custody</li> <br><br> <li>39.34% both want Sole Custody</li> <li>45.24% of cases: Mom wants Sole; Dad joint</li> <li>7.2% of cases: Dad wants Sole; Mom joint</li> <li>1.44% of cases: Hot Potato the Kids!</li> <li>6.77% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83 [m] => 2.6 [j] => 14.4 ) <br><br>Array ( [f] => 26.7 [m] => 32.9 [j] => 37.7 [o] => 2.7 )
Output for 5.3.24
From 1000 runs there were 29.4% agreements and 67.3% disagreements.From the agreements <ul> <li>79.25% go to Mom</li> <li>3.06% go to Dad</li> <li>17.69% joint custody</li> </ul>From the disagreements <ul> <li> 83.51% of Mom's want sole custody</li> <li> 47.25% of Dad's want sole custody</li> <br><br> <li>39.97% both want Sole Custody</li> <li>43.54% of cases: Mom wants Sole; Dad joint</li> <li>7.28% of cases: Dad wants Sole; Mom joint</li> <li>0.74% of cases: Hot Potato the Kids!</li> <li>8.47% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.4 [m] => 2.6 [j] => 15 ) <br><br>Array ( [f] => 28.3 [m] => 32.7 [j] => 35.7 [o] => 3.3 )
Output for 5.3.23
From 1000 runs there were 32.5% agreements and 64.2% disagreements.From the agreements <ul> <li>79.38% go to Mom</li> <li>4% go to Dad</li> <li>16.62% joint custody</li> </ul>From the disagreements <ul> <li> 86.29% of Mom's want sole custody</li> <li> 49.07% of Dad's want sole custody</li> <br><br> <li>42.37% both want Sole Custody</li> <li>43.93% of cases: Mom wants Sole; Dad joint</li> <li>6.7% of cases: Dad wants Sole; Mom joint</li> <li>0.93% of cases: Hot Potato the Kids!</li> <li>6.07% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 84.2 [m] => 2.7 [j] => 13.1 ) <br><br>Array ( [f] => 29.5 [m] => 32.8 [j] => 34.4 [o] => 3.3 )
Output for 5.3.22
From 1000 runs there were 31.8% agreements and 65% disagreements.From the agreements <ul> <li>80.19% go to Mom</li> <li>4.09% go to Dad</li> <li>15.72% joint custody</li> </ul>From the disagreements <ul> <li> 83.69% of Mom's want sole custody</li> <li> 48.31% of Dad's want sole custody</li> <br><br> <li>40.77% both want Sole Custody</li> <li>42.92% of cases: Mom wants Sole; Dad joint</li> <li>7.54% of cases: Dad wants Sole; Mom joint</li> <li>0.62% of cases: Hot Potato the Kids!</li> <li>8.15% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.7 [m] => 2.9 [j] => 14.4 ) <br><br>Array ( [f] => 30 [m] => 32.7 [j] => 34.1 [o] => 3.2 )
Output for 5.3.21
From 1000 runs there were 30.6% agreements and 66.5% disagreements.From the agreements <ul> <li>80.07% go to Mom</li> <li>1.96% go to Dad</li> <li>17.97% joint custody</li> </ul>From the disagreements <ul> <li> 83.01% of Mom's want sole custody</li> <li> 44.06% of Dad's want sole custody</li> <br><br> <li>38.5% both want Sole Custody</li> <li>44.51% of cases: Mom wants Sole; Dad joint</li> <li>5.56% of cases: Dad wants Sole; Mom joint</li> <li>1.65% of cases: Hot Potato the Kids!</li> <li>9.77% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 3.2 [j] => 14.5 ) <br><br>Array ( [f] => 30.7 [m] => 29.9 [j] => 36.5 [o] => 2.9 )
Output for 5.3.20
From 1000 runs there were 31% agreements and 66% disagreements.From the agreements <ul> <li>82.58% go to Mom</li> <li>3.55% go to Dad</li> <li>13.87% joint custody</li> </ul>From the disagreements <ul> <li> 82.42% of Mom's want sole custody</li> <li> 48.94% of Dad's want sole custody</li> <br><br> <li>41.97% both want Sole Custody</li> <li>40.45% of cases: Mom wants Sole; Dad joint</li> <li>6.97% of cases: Dad wants Sole; Mom joint</li> <li>1.97% of cases: Hot Potato the Kids!</li> <li>8.64% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.4 [m] => 3.4 [j] => 14.2 ) <br><br>Array ( [f] => 31.7 [m] => 33.4 [j] => 31.9 [o] => 3 )
Output for 5.3.19
From 1000 runs there were 30.6% agreements and 66.3% disagreements.From the agreements <ul> <li>77.78% go to Mom</li> <li>5.23% go to Dad</li> <li>16.99% joint custody</li> </ul>From the disagreements <ul> <li> 84.46% of Mom's want sole custody</li> <li> 44.19% of Dad's want sole custody</li> <br><br> <li>37.56% both want Sole Custody</li> <li>46.91% of cases: Mom wants Sole; Dad joint</li> <li>6.64% of cases: Dad wants Sole; Mom joint</li> <li>1.21% of cases: Hot Potato the Kids!</li> <li>7.69% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.3 [m] => 3.4 [j] => 14.3 ) <br><br>Array ( [f] => 28.8 [m] => 30.9 [j] => 37.2 [o] => 3.1 )
Output for 5.3.18
From 1000 runs there were 30.5% agreements and 67.7% disagreements.From the agreements <ul> <li>75.74% go to Mom</li> <li>3.61% go to Dad</li> <li>20.66% joint custody</li> </ul>From the disagreements <ul> <li> 83.46% of Mom's want sole custody</li> <li> 46.82% of Dad's want sole custody</li> <br><br> <li>40.92% both want Sole Custody</li> <li>42.54% of cases: Mom wants Sole; Dad joint</li> <li>5.91% of cases: Dad wants Sole; Mom joint</li> <li>1.33% of cases: Hot Potato the Kids!</li> <li>9.31% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.3 [m] => 3.3 [j] => 15.4 ) <br><br>Array ( [f] => 29 [m] => 32.8 [j] => 36.4 [o] => 1.8 )
Output for 5.3.17
From 1000 runs there were 31.7% agreements and 65% disagreements.From the agreements <ul> <li>79.5% go to Mom</li> <li>2.21% go to Dad</li> <li>18.3% joint custody</li> </ul>From the disagreements <ul> <li> 81.08% of Mom's want sole custody</li> <li> 46.15% of Dad's want sole custody</li> <br><br> <li>38% both want Sole Custody</li> <li>43.08% of cases: Mom wants Sole; Dad joint</li> <li>8.15% of cases: Dad wants Sole; Mom joint</li> <li>1.23% of cases: Hot Potato the Kids!</li> <li>9.54% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.2 [m] => 2.9 [j] => 16.9 ) <br><br>Array ( [f] => 31 [m] => 30.7 [j] => 35 [o] => 3.3 )
Output for 5.3.16
From 1000 runs there were 29.3% agreements and 67.8% disagreements.From the agreements <ul> <li>76.11% go to Mom</li> <li>2.05% go to Dad</li> <li>21.84% joint custody</li> </ul>From the disagreements <ul> <li> 84.66% of Mom's want sole custody</li> <li> 46.46% of Dad's want sole custody</li> <br><br> <li>40.41% both want Sole Custody</li> <li>44.25% of cases: Mom wants Sole; Dad joint</li> <li>6.05% of cases: Dad wants Sole; Mom joint</li> <li>1.77% of cases: Hot Potato the Kids!</li> <li>7.52% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.1 [m] => 3.2 [j] => 14.7 ) <br><br>Array ( [f] => 27.2 [m] => 32.1 [j] => 37.8 [o] => 2.9 )
Output for 5.3.15
From 1000 runs there were 30.4% agreements and 67% disagreements.From the agreements <ul> <li>76.97% go to Mom</li> <li>3.29% go to Dad</li> <li>19.74% joint custody</li> </ul>From the disagreements <ul> <li> 85.52% of Mom's want sole custody</li> <li> 47.31% of Dad's want sole custody</li> <br><br> <li>41.19% both want Sole Custody</li> <li>44.33% of cases: Mom wants Sole; Dad joint</li> <li>6.12% of cases: Dad wants Sole; Mom joint</li> <li>1.79% of cases: Hot Potato the Kids!</li> <li>6.57% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.7 [m] => 3.5 [j] => 13.8 ) <br><br>Array ( [f] => 27.8 [m] => 32.7 [j] => 36.9 [o] => 2.6 )
Output for 5.3.14
From 1000 runs there were 27.3% agreements and 69.1% disagreements.From the agreements <ul> <li>80.95% go to Mom</li> <li>4.76% go to Dad</li> <li>14.29% joint custody</li> </ul>From the disagreements <ul> <li> 83.94% of Mom's want sole custody</li> <li> 46.02% of Dad's want sole custody</li> <br><br> <li>39.22% both want Sole Custody</li> <li>44.72% of cases: Mom wants Sole; Dad joint</li> <li>6.8% of cases: Dad wants Sole; Mom joint</li> <li>2.17% of cases: Hot Potato the Kids!</li> <li>7.09% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.1 [m] => 4.1 [j] => 12.8 ) <br><br>Array ( [f] => 27.2 [m] => 33.1 [j] => 36.1 [o] => 3.6 )
Output for 5.3.13
From 1000 runs there were 26.7% agreements and 69.6% disagreements.From the agreements <ul> <li>80.15% go to Mom</li> <li>4.12% go to Dad</li> <li>15.73% joint custody</li> </ul>From the disagreements <ul> <li> 82.18% of Mom's want sole custody</li> <li> 48.13% of Dad's want sole custody</li> <br><br> <li>39.8% both want Sole Custody</li> <li>42.39% of cases: Mom wants Sole; Dad joint</li> <li>8.33% of cases: Dad wants Sole; Mom joint</li> <li>1.44% of cases: Hot Potato the Kids!</li> <li>8.05% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82 [m] => 2.8 [j] => 15.2 ) <br><br>Array ( [f] => 27.3 [m] => 34.6 [j] => 34.4 [o] => 3.7 )
Output for 5.3.12
From 1000 runs there were 29.8% agreements and 66.7% disagreements.From the agreements <ul> <li>80.54% go to Mom</li> <li>3.69% go to Dad</li> <li>15.77% joint custody</li> </ul>From the disagreements <ul> <li> 84.71% of Mom's want sole custody</li> <li> 50.37% of Dad's want sole custody</li> <br><br> <li>43.78% both want Sole Custody</li> <li>40.93% of cases: Mom wants Sole; Dad joint</li> <li>6.6% of cases: Dad wants Sole; Mom joint</li> <li>1.95% of cases: Hot Potato the Kids!</li> <li>6.75% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.5 [m] => 3.6 [j] => 12.9 ) <br><br>Array ( [f] => 28.8 [m] => 34.7 [j] => 33 [o] => 3.5 )
Output for 5.3.11
From 1000 runs there were 29.3% agreements and 69.2% disagreements.From the agreements <ul> <li>78.16% go to Mom</li> <li>3.07% go to Dad</li> <li>18.77% joint custody</li> </ul>From the disagreements <ul> <li> 82.08% of Mom's want sole custody</li> <li> 46.68% of Dad's want sole custody</li> <br><br> <li>39.02% both want Sole Custody</li> <li>43.06% of cases: Mom wants Sole; Dad joint</li> <li>7.66% of cases: Dad wants Sole; Mom joint</li> <li>1.59% of cases: Hot Potato the Kids!</li> <li>8.67% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.8 [m] => 3.4 [j] => 15.8 ) <br><br>Array ( [f] => 28.7 [m] => 33.2 [j] => 36.6 [o] => 1.5 )
Output for 5.3.10
From 1000 runs there were 30.4% agreements and 66.9% disagreements.From the agreements <ul> <li>79.61% go to Mom</li> <li>3.29% go to Dad</li> <li>17.11% joint custody</li> </ul>From the disagreements <ul> <li> 84.6% of Mom's want sole custody</li> <li> 46.19% of Dad's want sole custody</li> <br><br> <li>38.12% both want Sole Custody</li> <li>46.49% of cases: Mom wants Sole; Dad joint</li> <li>8.07% of cases: Dad wants Sole; Mom joint</li> <li>0.9% of cases: Hot Potato the Kids!</li> <li>6.43% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83 [m] => 2.7 [j] => 14.3 ) <br><br>Array ( [f] => 28 [m] => 31.9 [j] => 37.4 [o] => 2.7 )
Output for 5.3.9
From 1000 runs there were 31.3% agreements and 65.3% disagreements.From the agreements <ul> <li>84.03% go to Mom</li> <li>1.6% go to Dad</li> <li>14.38% joint custody</li> </ul>From the disagreements <ul> <li> 82.08% of Mom's want sole custody</li> <li> 48.55% of Dad's want sole custody</li> <br><br> <li>39.2% both want Sole Custody</li> <li>42.88% of cases: Mom wants Sole; Dad joint</li> <li>9.34% of cases: Dad wants Sole; Mom joint</li> <li>1.38% of cases: Hot Potato the Kids!</li> <li>7.2% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83 [m] => 2.1 [j] => 14.9 ) <br><br>Array ( [f] => 31.3 [m] => 32.2 [j] => 33.1 [o] => 3.4 )
Output for 5.3.8
From 1000 runs there were 29.5% agreements and 67.5% disagreements.From the agreements <ul> <li>84.07% go to Mom</li> <li>1.69% go to Dad</li> <li>14.24% joint custody</li> </ul>From the disagreements <ul> <li> 83.56% of Mom's want sole custody</li> <li> 45.93% of Dad's want sole custody</li> <br><br> <li>38.81% both want Sole Custody</li> <li>44.74% of cases: Mom wants Sole; Dad joint</li> <li>7.11% of cases: Dad wants Sole; Mom joint</li> <li>2.22% of cases: Hot Potato the Kids!</li> <li>7.11% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.7 [m] => 3.4 [j] => 12.9 ) <br><br>Array ( [f] => 29.7 [m] => 31.5 [j] => 35.8 [o] => 3 )
Output for 5.3.7
From 1000 runs there were 29.6% agreements and 66.9% disagreements.From the agreements <ul> <li>79.39% go to Mom</li> <li>4.05% go to Dad</li> <li>16.55% joint custody</li> </ul>From the disagreements <ul> <li> 81.61% of Mom's want sole custody</li> <li> 48.58% of Dad's want sole custody</li> <br><br> <li>39.76% both want Sole Custody</li> <li>41.85% of cases: Mom wants Sole; Dad joint</li> <li>8.82% of cases: Dad wants Sole; Mom joint</li> <li>1.2% of cases: Hot Potato the Kids!</li> <li>8.37% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 81.1 [m] => 3.8 [j] => 15.1 ) <br><br>Array ( [f] => 28.1 [m] => 33.7 [j] => 34.7 [o] => 3.5 )
Output for 5.3.6
From 1000 runs there were 33.7% agreements and 65% disagreements.From the agreements <ul> <li>78.93% go to Mom</li> <li>5.34% go to Dad</li> <li>15.73% joint custody</li> </ul>From the disagreements <ul> <li> 85.23% of Mom's want sole custody</li> <li> 46.62% of Dad's want sole custody</li> <br><br> <li>40% both want Sole Custody</li> <li>45.23% of cases: Mom wants Sole; Dad joint</li> <li>6.62% of cases: Dad wants Sole; Mom joint</li> <li>0.92% of cases: Hot Potato the Kids!</li> <li>7.23% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.9 [m] => 3.6 [j] => 13.5 ) <br><br>Array ( [f] => 30.8 [m] => 32.1 [j] => 35.8 [o] => 1.3 )
Output for 5.3.5
From 1000 runs there were 29.9% agreements and 66.9% disagreements.From the agreements <ul> <li>72.91% go to Mom</li> <li>4.35% go to Dad</li> <li>22.74% joint custody</li> </ul>From the disagreements <ul> <li> 82.21% of Mom's want sole custody</li> <li> 46.94% of Dad's want sole custody</li> <br><br> <li>39.01% both want Sole Custody</li> <li>43.2% of cases: Mom wants Sole; Dad joint</li> <li>7.92% of cases: Dad wants Sole; Mom joint</li> <li>1.2% of cases: Hot Potato the Kids!</li> <li>8.67% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 79.4 [m] => 3.2 [j] => 17.4 ) <br><br>Array ( [f] => 27.3 [m] => 32.7 [j] => 36.8 [o] => 3.2 )
Output for 5.3.4
From 1000 runs there were 29.9% agreements and 67.6% disagreements.From the agreements <ul> <li>76.59% go to Mom</li> <li>5.69% go to Dad</li> <li>17.73% joint custody</li> </ul>From the disagreements <ul> <li> 82.99% of Mom's want sole custody</li> <li> 48.52% of Dad's want sole custody</li> <br><br> <li>39.2% both want Sole Custody</li> <li>43.79% of cases: Mom wants Sole; Dad joint</li> <li>9.32% of cases: Dad wants Sole; Mom joint</li> <li>1.18% of cases: Hot Potato the Kids!</li> <li>6.51% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.7 [m] => 3.3 [j] => 16 ) <br><br>Array ( [f] => 27.4 [m] => 34.5 [j] => 35.6 [o] => 2.5 )
Output for 5.3.3
From 1000 runs there were 30.4% agreements and 66.9% disagreements.From the agreements <ul> <li>82.89% go to Mom</li> <li>2.63% go to Dad</li> <li>14.47% joint custody</li> </ul>From the disagreements <ul> <li> 85.2% of Mom's want sole custody</li> <li> 43.65% of Dad's want sole custody</li> <br><br> <li>37.37% both want Sole Custody</li> <li>47.83% of cases: Mom wants Sole; Dad joint</li> <li>6.28% of cases: Dad wants Sole; Mom joint</li> <li>1.2% of cases: Hot Potato the Kids!</li> <li>7.32% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 84.3 [m] => 2.6 [j] => 13.1 ) <br><br>Array ( [f] => 29.9 [m] => 30 [j] => 37.4 [o] => 2.7 )
Output for 5.3.2
From 1000 runs there were 28.4% agreements and 68.4% disagreements.From the agreements <ul> <li>83.1% go to Mom</li> <li>3.87% go to Dad</li> <li>13.03% joint custody</li> </ul>From the disagreements <ul> <li> 83.04% of Mom's want sole custody</li> <li> 50.29% of Dad's want sole custody</li> <br><br> <li>40.94% both want Sole Custody</li> <li>42.11% of cases: Mom wants Sole; Dad joint</li> <li>9.36% of cases: Dad wants Sole; Mom joint</li> <li>1.32% of cases: Hot Potato the Kids!</li> <li>6.29% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 83.2 [m] => 2.5 [j] => 14.3 ) <br><br>Array ( [f] => 28.3 [m] => 35.5 [j] => 33 [o] => 3.2 )
Output for 5.3.1
From 1000 runs there were 32.3% agreements and 64.9% disagreements.From the agreements <ul> <li>77.09% go to Mom</li> <li>3.72% go to Dad</li> <li>19.2% joint custody</li> </ul>From the disagreements <ul> <li> 81.2% of Mom's want sole custody</li> <li> 51.31% of Dad's want sole custody</li> <br><br> <li>41.76% both want Sole Custody</li> <li>39.45% of cases: Mom wants Sole; Dad joint</li> <li>9.55% of cases: Dad wants Sole; Mom joint</li> <li>1.39% of cases: Hot Potato the Kids!</li> <li>7.86% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 80.1 [m] => 3 [j] => 16.9 ) <br><br>Array ( [f] => 30.1 [m] => 34.5 [j] => 32.6 [o] => 2.8 )
Output for 5.3.0
From 1000 runs there were 29.1% agreements and 68.2% disagreements.From the agreements <ul> <li>78.01% go to Mom</li> <li>5.84% go to Dad</li> <li>16.15% joint custody</li> </ul>From the disagreements <ul> <li> 83.87% of Mom's want sole custody</li> <li> 44.72% of Dad's want sole custody</li> <br><br> <li>38.27% both want Sole Custody</li> <li>45.6% of cases: Mom wants Sole; Dad joint</li> <li>6.45% of cases: Dad wants Sole; Mom joint</li> <li>1.32% of cases: Hot Potato the Kids!</li> <li>8.36% are in another configuration of disagreement</li> </ul><br><br>Array ( [f] => 82.2 [m] => 4 [j] => 13.8 ) <br><br>Array ( [f] => 28 [m] => 32.2 [j] => 37.1 [o] => 2.7 )

preferences:
125.34 ms | 403 KiB | 163 Q