Created Thu 27th Mar 8:30am PDT by
triathematician
All questions » Technology » Hubdub » Will the ratio of "No" to "Yes" be greater than the percentage of "Yes" when this question is settled?
Settled as Yes
Example: if NO is 10% and YES is 90%, the ratio is 10/90 = .1111 which is less than 0.9 (YES), so it would be settled as NO.
This self-referential question is similar to http://www.hubdub.com/e/Market/Will_the_no_option_be_a_greater_percentage_than_the_yes_option_at_suspend_date_3126/view and can likewise be settled without being gamed.
This self-referential question is similar to http://www.hubdub.com/e/Market/Will_the_no_option_be_a_greater_percentage_than_the_yes_option_at_suspend_date_3126/view and can likewise be settled without being gamed.
Settled
|
|
Yes |
|
||
|
|
No |
|
Activity: H$17,763
Settled as Yes on Wed 2nd Apr 4:37am PDT
All questions are settled by Hubdub according to settlement info provided by the question creator.
Settlement details:
As reported by a major mainstream news source.
Suspend date: Wed 2nd Apr 12:59am PDT
Settlement date: Wed 2nd Apr 4:37am PDT
Prediction cut-off: Predictions on this question after Wed 2nd Apr 12:59am PDT have been voided because they were made after the question could be settled
Initial likelihoods:
Yes: 50%
Action history:
Created Thu 27th Mar 8:30am PDT by
triathematician
Suspended Wed 2nd Apr 12:59am PDT : Suspend date reached
Settlement requested Wed 2nd Apr 4:10am PDT by
jenniandboys
: .42/.58=.72>.52, so YES the ratio of NO/YES is greater than the YES, so settle as YES
Settled as 'Yes' Wed 2nd Apr 4:37am PDT by
tomg
: 42/58=.72>.58, so YES the ratio of NO/YES is greater than the YES, so settle as YES. You crazy kids! :)
All questions are settled by Hubdub according to settlement info provided by the question creator.
Settlement details: As reported by a major mainstream news source.... read all
Predictions
Comments
New to Hubdub?
Hubdub lets you play at predicting the outcomes of real running news questions
Related tags
Related News
This news is selected automatically based on the question, its background, options and tags
This news is selected automatically based on the question, its background, options and tags
score: 10
The Bend Bulletin 20 weeks ago
Special education students graduate in higher numbers than state goals in three Central Oregon school districts, according to an Oregon Department...
score: 10
The Eagle-Tribune 20 weeks ago
P If 14 math teams enter the Tri-State Math Meet and three teams are from local high schools, what are the chances the three would sweep the meet...
score: 10
Rocky Mountain News 20 weeks ago
April is Financial Literacy Month. President Bush is currently touting his establishment of a President's Advisory Council on Financial Literacy ...
score: 10
Selma Times Journal 20 weeks ago
Jim Herod, a Selma native, has used his Southern upbringing to combine two very different career tracks: professor of mathematics and novelist ...
score: 10
Philadelphia Inquirer 20 weeks ago
Cabrini College will host a benefit for Larry Sugden, a Drexel Hill resident and longtime Delaware County sports figure who is battling kidney ...
New in Technology » Hubdub
More questions by
93% of previous questions settled successfully
39 settled, 3 voided
39 settled, 3 voided





which means 61.3 < 62 (the ratio is smaller than the value) so it would settle as "No"
which means 63.9 > 61 (the ratio is larger than the value) so it would settle as "Yes".
Hm. Damn.
A YES at or above 61.804% will settle as "NO" and a YES at or below 61.803% will settle as "YES."
My head hurts.
class calc
{public void main()
{double yes,no,finalyes=1;
double i;
for(i=1;i<100;i=i+0.01)
{yes =i;
no=(100-i);
double ratio=no/yes;
yes=yes/100;
if(ratio>yes)
finalyes=yes*100;
}
System.out.println("For Yes: Yes % must be:"+finalyes+"% or more");
}
}
It returned an output:
For Yes: Yes % must be:61.79999999999627% or more
class calc
{public void main()
{double yes,no,finalyes=1;
double i;
for(i=1;i<100;i=i+0.01)
{yes =i;
no=(100-i);
double ratio=no/yes;
yes=yes/100;
if(ratio>yes)
finalyes=yes*100;
}
System.out.println("For No: Yes % must be:"+finalyes+"% or more");
}
}
For No: Yes % must be:61.79999999999627% or more
Hubdub will probably take 1%, which means:
For No: Yes % must be:62.0% or more
(1-x)/x=x
x^2+x-1=0
use quadratic formula and you find that x=-1.61803 or .618034
Since we're a positive kind of group on hubdub, you pick x=.618034 thus you're looking for yes of 61.8034% or more :)
class Quadratic /*This program solves a quadratic equation(ie. with two possible
solutions) in the form a*x^2 + b*x + c=0, where 'x' is unknown
and 'a', 'b' and 'c' are accepted from the user. It uses global
variables */
{double x1,x2,a,b,c,discriminant; //Global variables
public void main () throws IOException /*Main function, which accepts the values of
'a', 'b' and 'c', and also calls the
calculate function */
{BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.println("The equation should be in the form a*x^2 + b*x + c=0, where 'x' is unknown");
System.out.println("Enter 'a'");
a=Integer.parseInt(br.readLine()); //'a' is accepted
System.out.println("Enter 'b'");
b=Integer.parseInt(br.readLine()); //'b' is accepted
System.out.println("Enter 'c'");
c=Integer.parseInt(br.readLine()); //'c' is accepted
calculate(); //Calling calculate function
}
public void calculate () /*Calculate function, which calculates the value(s)
of 'x' by and prints them */
{discriminant=(b*b)-(4*a*c); //Calculates discriminant
if(discriminant<0) /*To prevent negative discriminant, as square root of a
negative number is impossible to find */
{System.out.println("Roots are negative, and thus there is no solution");}
else
{if(a!=0) //If 'a'=0, then the equation is a linear equation eg. x+4=0
{discriminant=Math.sqrt(discriminant);
x1=(-b+discriminant)/(2*a); //Calculating first value of 'x'
x2=(-b-discriminant)/(2*a); //Calculating second value of 'x'
}
else
{x1=-c/b; //Values of 'x' for a linear equation
x2=-c/b; //x2=x1, as a linear equation has only one solution
}
System.out.println("Solution: x= "+x1+" or x= "+x2);} //solution is printed
System.out.println();
}
}
Output:
The equation should be in the form a*x^2 + b*x + c=0, where 'x' is unknown
Enter 'a'
1
Enter 'b'
1
Enter 'c'
-1
Solution: x= 0.6180339887498949 or x= -1.618033988749895
Hehehehehe
These questions are fantastic, I just don't know what to do, hahaha :-D
And please hurry, I have only 7hrs till the question suspends and I need to make $50,000 quick..... Big Jimbo Da Clam wants his money back!!!
lucidstates
I have no clue. My older son is 16 and he's learning SQL in High School, but yeah, he's not that good at it yet. Not to mention that I was just teasing ... and that's pretty impressive Java coding for a 16 year old (unless you downloaded it all from the 'net 8^). I encourage you to study SQL (and XML, which is a text file that acts like a database), these days code is rarely significant absent databases; even if you are writing things like operating systems.
meanderingsearcher:LOL
Please log in or join to post a comment.