Wazua
»
Club SK
»
Politics
»
IEBC Official Results - Form 36 - Bomas of Kenya
Rank: Elder Joined: 12/6/2008 Posts: 3,568
|
Manyala wrote:Much Know wrote:Candidate Votes % Uhuru 5159344 50.39564143 Raila 4516660 44.11800761 Madvd 369491 3.609128593 PK 62265 0.608194494 Dida 49084 0.479444608 Karua 36890 0.36033558 Kiyapi 32600 0.318431551 Muite 11345 0.110816133 Total 10237679 239 Constituencies Time 17:35pm Magic Number 5118839.5
10% vote not tallied
90% of tallied vote hit magic number over 50% + 1 officially hit.
With a normal distribution through the election(bell curve + or - 4 %) thorough the balance, it will e also 50+1 with the 10%remaining, (10% of 291 = 29 (or 30 contingencies remaining) is obviously 50 + 1, especially given rift and perhaps Meru is carrying the bulk of remaining distribution.
You can with a statistical certainty of 98% say even digitally, Jubilee has hit the 50 + 1 rule.
Prove me wrong
Uliza Steadman In your previous posts you were so sure UMK had already achieved the 50% + 1, at 5 million votes. Yet to be declared winner? Shouldn't IEBC have declared him winner, in the last conference? Using statistical projections of two equal or unequal normal distributions, yes they should have. Forgive my poor math. The 5 million Mark was obviously the best place to plot an intersection of this two distributions. That is the analogue way, the digital way is something different all together, like what i have subsequently pasted up there with 0.5 people and so on. Ras Kienyeji Man
|
|
|
Rank: Member Joined: 1/30/2009 Posts: 164
|
holycow wrote: Total votes cast = XHalf of X = x/2= YUhurus votes = Utherefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff. Where X, Y and U are variables depending on IEBC figures. a quick API to help wazua calculate this package org.iebc.prezzo.votes;
import java.util.Scanner;
/** * @author xxxx yyyy * */ public class WinnerCalculator {
/** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub
/* * @non-javaDocs * Prompt user to enter totalVotesCast, * 2d prompt - UhuruVotes */ Scanner scan = new Scanner(System.in); System.out.println("Enter total Votes Cast: "); int totalCast = scan.nextInt(); System.out.println("Enter Uhuru votes: "); int uhuruVotes = scan.nextInt();
// This sh*t returns true if second roundi :) System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes)); // test data // isSeccondRound(10115704, 3115704) }
/** * evaluate if runoff * * @param totalVotesCast (not null) * @param uhuruVotes (not null) * * @return isSecondRound - true or false */ public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {
int fifty_Percent_Plus_One = 0;
fifty_Percent_Plus_One = totalVotesCast / 2; int _holder = uhuruVotes - fifty_Percent_Plus_One;
// conditional if return (_holder < 1 ? true : false); // runoff if true else nope } } Out put with sample dataEnter total Votes Cast: 10115704 Enter Uhuru votes: 6115704 Is Second round? : false They keep moving the cheese  stolen from opensuse forums :)
|
|
|
Rank: Member Joined: 3/25/2010 Posts: 111 Location: Nairobi
|
Much Know wrote:Between Raila and Uhuru there is an almost 700,000 vote 7% gap (twice musalia vote of 3.6%, but he does not want to concede because of a few ten thousand votes that will truly differentiate 50 + 1 ? Hii mtu? it's 642,684 and trust me every vote matters,if we are to go by your rounding off,its a difference of 600,000.It's 100% a runoff.
|
|
|
Rank: Elder Joined: 12/17/2009 Posts: 3,583 Location: Kenya
|
Seq Lu wrote:holycow wrote: Total votes cast = XHalf of X = x/2= YUhurus votes = Utherefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff. Where X, Y and U are variables depending on IEBC figures. a quick API to help wazua calculate this package org.iebc.prezzo.votes;
import java.util.Scanner;
/** * @author xxxx yyyy * */ public class WinnerCalculator {
/** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub
/* * @non-javaDocs * Prompt user to enter totalVotesCast, * 2d prompt - UhuruVotes */ Scanner scan = new Scanner(System.in); System.out.println("Enter total Votes Cast: "); int totalCast = scan.nextInt(); System.out.println("Enter Uhuru votes: "); int uhuruVotes = scan.nextInt();
// This sh*t returns true if second roundi :) System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes)); // test data // isSeccondRound(10115704, 3115704) }
/** * evaluate if runoff * * @param totalVotesCast (not null) * @param uhuruVotes (not null) * * @return isSecondRound - true or false */ public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {
int fifty_Percent_Plus_One = 0;
fifty_Percent_Plus_One = totalVotesCast / 2; int _holder = uhuruVotes - fifty_Percent_Plus_One;
// conditional if return (_holder < 1 ? true : false); // runoff if true else nope } } Out put with sample dataEnter total Votes Cast: 10115704 Enter Uhuru votes: 6115704 Is Second round? : false sasa hi ni lugha gani
|
|
|
Rank: Member Joined: 4/26/2008 Posts: 90
|
Much Know wrote:Between Raila and Uhuru there is an almost 700,000 vote 7% gap (twice musalia vote of 3.6%, but he does not want to concede because of a few ten thousand votes that will truly differentiate 50 + 1 ? Hii mtu? Why are you not starting with Dida who is yet to concede....hater
|
|
|
Rank: User Joined: 6/18/2009 Posts: 271
|
Seq Lu wrote:holycow wrote: Total votes cast = XHalf of X = x/2= YUhurus votes = Utherefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff. Where X, Y and U are variables depending on IEBC figures. a quick API to help wazua calculate this package org.iebc.prezzo.votes;
import java.util.Scanner;
/** * @author xxxx yyyy * */ public class WinnerCalculator {
/** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub
/* * @non-javaDocs * Prompt user to enter totalVotesCast, * 2d prompt - UhuruVotes */ Scanner scan = new Scanner(System.in); System.out.println("Enter total Votes Cast: "); int totalCast = scan.nextInt(); System.out.println("Enter Uhuru votes: "); int uhuruVotes = scan.nextInt();
// This sh*t returns true if second roundi :) System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes)); // test data // isSeccondRound(10115704, 3115704) }
/** * evaluate if runoff * * @param totalVotesCast (not null) * @param uhuruVotes (not null) * * @return isSecondRound - true or false */ public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {
int fifty_Percent_Plus_One = 0;
fifty_Percent_Plus_One = totalVotesCast / 2; int _holder = uhuruVotes - fifty_Percent_Plus_One;
// conditional if return (_holder < 1 ? true : false); // runoff if true else nope } } Out put with sample dataEnter total Votes Cast: 10115704 Enter Uhuru votes: 6115704 Is Second round? : false  . wow
|
|
|
Rank: Member Joined: 3/25/2010 Posts: 111 Location: Nairobi
|
techboy wrote:Seq Lu wrote:holycow wrote: Total votes cast = XHalf of X = x/2= YUhurus votes = Utherefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff. Where X, Y and U are variables depending on IEBC figures. a quick API to help wazua calculate this package org.iebc.prezzo.votes;
import java.util.Scanner;
/** * @author xxxx yyyy * */ public class WinnerCalculator {
/** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub
/* * @non-javaDocs * Prompt user to enter totalVotesCast, * 2d prompt - UhuruVotes */ Scanner scan = new Scanner(System.in); System.out.println("Enter total Votes Cast: "); int totalCast = scan.nextInt(); System.out.println("Enter Uhuru votes: "); int uhuruVotes = scan.nextInt();
// This sh*t returns true if second roundi :) System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes)); // test data // isSeccondRound(10115704, 3115704) }
/** * evaluate if runoff * * @param totalVotesCast (not null) * @param uhuruVotes (not null) * * @return isSecondRound - true or false */ public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {
int fifty_Percent_Plus_One = 0;
fifty_Percent_Plus_One = totalVotesCast / 2; int _holder = uhuruVotes - fifty_Percent_Plus_One;
// conditional if return (_holder < 1 ? true : false); // runoff if true else nope } } Out put with sample dataEnter total Votes Cast: 10115704 Enter Uhuru votes: 6115704 Is Second round? : false  . wow lol i hope you are commending him on at least commenting out his "code"
|
|
|
Rank: Veteran Joined: 1/9/2009 Posts: 1,262
|
I am surprised we are still discussing whether or not there is a round 2.
The discussion should be about what each of the 2 should be doing to ensure they get the simple majority in that round.
we'll be looking at 48/46 at the end of this circus.
Hi hesabu ingine imebaki is for the benefit of the strategists in both camps to analyze for round 2.
|
|
|
Rank: Elder Joined: 3/2/2007 Posts: 8,776 Location: Cameroon
|
Nasikia eti Returning Officer wa Nithi ameingia Bomas watu wakafaint! TULIA.........UFUNZWE!
|
|
|
Rank: Veteran Joined: 1/9/2009 Posts: 1,262
|
simonkabz wrote:Nasikia eti Returning Officer wa Nithi ameingia Bomas watu wakafaint! You mean yule wa pickup....
|
|
|
Rank: Elder Joined: 6/17/2008 Posts: 23,365 Location: Nairobi
|
Thought we agreed ni saa ya phombe sasa.... ..."Wewe ni mtu mdogo sana....na mwenye amekuandika pia ni mtu mdogo sana!".
|
|
|
Rank: Member Joined: 5/2/2010 Posts: 305
|
simonkabz wrote:Nasikia eti Returning Officer wa Nithi ameingia Bomas watu wakafaint!  this drama ain't ending till the last straw. “Once the last tree is cut and the last river poisoned,you will find you cannot eat your money" Traditional saying.
|
|
|
Rank: Member Joined: 8/7/2012 Posts: 180
|
Ati some 11 constituencies had not been included in the final tally being screened by IEBC & they have admitted???? LINKEagles don't flock, you have to find them one at a time.
|
|
|
Rank: User Joined: 6/18/2009 Posts: 271
|
IT'd wrote:techboy wrote:Seq Lu wrote:holycow wrote: Total votes cast = XHalf of X = x/2= YUhurus votes = Utherefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff. Where X, Y and U are variables depending on IEBC figures. a quick API to help wazua calculate this package org.iebc.prezzo.votes;
import java.util.Scanner;
/** * @author xxxx yyyy * */ public class WinnerCalculator {
/** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub
/* * @non-javaDocs * Prompt user to enter totalVotesCast, * 2d prompt - UhuruVotes */ Scanner scan = new Scanner(System.in); System.out.println("Enter total Votes Cast: "); int totalCast = scan.nextInt(); System.out.println("Enter Uhuru votes: "); int uhuruVotes = scan.nextInt();
// This sh*t returns true if second roundi :) System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes)); // test data // isSeccondRound(10115704, 3115704) }
/** * evaluate if runoff * * @param totalVotesCast (not null) * @param uhuruVotes (not null) * * @return isSecondRound - true or false */ public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {
int fifty_Percent_Plus_One = 0;
fifty_Percent_Plus_One = totalVotesCast / 2; int _holder = uhuruVotes - fifty_Percent_Plus_One;
// conditional if return (_holder < 1 ? true : false); // runoff if true else nope } } Out put with sample dataEnter total Votes Cast: 10115704 Enter Uhuru votes: 6115704 Is Second round? : false  . wow lol i hope you are commending him on at least commenting out his "code" i love java too. actually never thought i could use it to solve election stuff
|
|
|
Rank: User Joined: 6/18/2009 Posts: 271
|
|
|
|
Rank: User Joined: 6/18/2009 Posts: 271
|
FATHER: Son, did U receive a text confirming your K.C.S.E results. SON: Yes Dad, I got it last week. FATHER: Ooh that's good whydidn't you tell me what you got? SON: Dad, coz those are still Provisional results, they are not very accurate. FATHER: Ok, so what did you get Son? SON: Dad u do know that Provisional results, receivedby electronic means somebody can tamper with it before u receive it. FATHER: Son, you are not answering my question, what did you get? SON: Dad, I think someone hacked my SMS feed. FATHER: I will not ask u again, Mama Nanii leta Fimbo. SON: Chill, chill dad,the SMS implied that I got an E but it's still too early to judge, meaning itcan change anytime coz my stronghold subjects are not in yet!!
|
|
|
Rank: Member Joined: 10/27/2008 Posts: 52
|
|
|
|
Rank: Member Joined: 2/9/2012 Posts: 576
|
Behemoth wrote:Ati some 11 constituencies had not been included in the final tally being screened by IEBC & they have admitted???? LINK just saw that too How? if that is true IEBC must be the most incompetent team ever kuliko Eck. Africa belongs to Africans.
|
|
|
Rank: Elder Joined: 6/17/2008 Posts: 23,365 Location: Nairobi
|
[quote=waiter]Just seen this http://www.nation.co.ke/.../-/k15317z/-/index.html[/quote] Now you have seen. ..."Wewe ni mtu mdogo sana....na mwenye amekuandika pia ni mtu mdogo sana!".
|
|
|
Rank: Member Joined: 1/30/2009 Posts: 164
|
techboy wrote:IT'd wrote:techboy wrote:Seq Lu wrote:holycow wrote: Total votes cast = XHalf of X = x/2= YUhurus votes = Utherefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff. Where X, Y and U are variables depending on IEBC figures. a quick API to help wazua calculate this package org.iebc.prezzo.votes;
import java.util.Scanner;
/** * @author xxxx yyyy * */ public class WinnerCalculator {
/** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub
/* * @non-javaDocs * Prompt user to enter totalVotesCast, * 2d prompt - UhuruVotes */ Scanner scan = new Scanner(System.in); System.out.println("Enter total Votes Cast: "); int totalCast = scan.nextInt(); System.out.println("Enter Uhuru votes: "); int uhuruVotes = scan.nextInt();
// This sh*t returns true if second roundi :) System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes)); // test data // isSeccondRound(10115704, 3115704) }
/** * evaluate if runoff * * @param totalVotesCast (not null) * @param uhuruVotes (not null) * * @return isSecondRound - true or false */ public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {
int fifty_Percent_Plus_One = 0;
fifty_Percent_Plus_One = totalVotesCast / 2; int _holder = uhuruVotes - fifty_Percent_Plus_One;
// conditional if return (_holder < 1 ? true : false); // runoff if true else nope } } Out put with sample dataEnter total Votes Cast: 10115704 Enter Uhuru votes: 6115704 Is Second round? : false  . wow lol i hope you are commending him on at least commenting out his "code" i love java too. actually never thought i could use it to solve election stuff .. and a necessary distractor from erections They keep moving the cheese  stolen from opensuse forums :)
|
|
|
Wazua
»
Club SK
»
Politics
»
IEBC Official Results - Form 36 - Bomas of Kenya
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
|