zserf

- friends
4,634 link karma
22,945 comment karma
send messageredditor for
what's this?

TROPHY CASE


  • Two-Year Club

    Verified Email

This always bugged me. by KatiKat123in funny

[–]zserf 4 points5 points ago

You might belong in Hufflepuff
Where they are just and loyal
Those patient Hufflepuffs are true
and unafraid of toil.

-The Sorting Hat

Chinese is hardcore by tsxyin WTF

[–]zserf 0 points1 point ago

Shi is pronounced more closely to sure than shit.

Is this an accurate definition of a definite integral? by davidthefatin math

[–]zserf 0 points1 point ago

Yeah, you can think of it as

for (i=n;i<=k;i++){ sum=sum+f(i);

where i=n is below sigma, and k is the number above, with f being the function to the right of sigma.

Is this an accurate definition of a definite integral? by davidthefatin math

[–]zserf 0 points1 point ago

You add 1 each time to i though. You have no idea if b-a/delta(x) is an integer, and if it's not, the sigma makes no sense.

I'm a programmer that stumbled across an interesting fractal. Can anyone shed some light on what I've done? by aurathin math

[–]zserf 2 points3 points ago

You will get fractals like this if you do anything in the correct range. Anything larger than 1/2 gets you overlapping triangles, and anything smaller than 2/3 gets you empty space. It just so happens that phi is in the right range to have both of these properties be easily observable. Values between .6 and .63 look the best to me.

I'm having trouble with imgur, but if you have java you can play around with this code, which goes quite quickly.

public class Serpenski{  
public static void main(String[] args){  
    double x=Double.parseDouble (args [0]);  
    double y=Double.parseDouble (args [1]);  
    double a=Double.parseDouble (args [2]);  
    double b=Double.parseDouble (args [3]);  
    double point1x=0;  
    double point1y=0;  
    double point2x=1;  
    double point2y=0;  
    double point3x=.5;  
    double point3y=.86603;  
    StdDraw.setXscale(0.0, 1.0);  
    StdDraw.setYscale(0.0, 1.0);  
    StdDraw.show (0);  
    for (double i=1.0; i<=100000; i++){  
        double r=Math.random();  
        if (r<(.333)){                   
            StdDraw.point(((a*point1x+b*x)/(a+b)),((a*point1y+b*y)/(a+b)));  
            x=(a*point1x+b*x)/(a+b);  
            y=(a*point1y+b*y)/(a+b);  
        }  
        else if (r<(.667)){  
            StdDraw.point(((a*point2x+b*x)/(a+b)),((a*point2y+b*y)/(a+b)));  
            x=(a*point2x+b*x)/(a+b);  
            y=(a*point2y+b*y)/(a+b);}  
        else {  
            StdDraw.point(((a*point3x+b*x)/(a+b)),((a*point3y+b*y)/(a+b)));  
            x=(a*point3x+b*x)/(a+b);  
            y=(a*point3y+b*y)/(a+b);}  
    }  
    StdDraw.show (0);  
}  

}

Change all the &lt to < . I'm not sure why reddit is switching that.

Ever heard of the Baader-Meinhof phenomenon? You probably will soon! What's your craziest experience with this phenomenon, Reddit? by id3ntitycrisisin AskReddit

[–]zserf 0 points1 point ago

In my Data Structures and Algorithms class we gave an example about mathematical induction and successor functions. The next day in Mathematical Logic a different teacher gave nearly an identical example. It's odd, because both of these topics were tangents.

TIL that the incarceration rate in the USA is the highest in the world, and that the incarceration rate of its black population exceeds that of South Africa at the height of apartheid. by jacobsn2in todayilearned

[–]zserf 2 points3 points ago

"As one might expect, a good case can be made that fewer Americans are now being victimized" thanks to the tougher crime policies, Paul Cassell, an authority on sentencing and a former federal judge, wrote in The Stanford Law Review.

I would say a good case can also be made that sending people to prison for recreational drug use and minor offenses is a form of victimization.

Would You Spend Two Years in Solitary Confinement for $22 million? by superchetin AskReddit

[–]zserf 1 point2 points ago

INTP subreddit

I'm also an INTP, and I most certainly would not choose to do it. I don't even know what I'd do with that much money.

Ha! Parents! by slightlyincognitoin funny

[–]zserf 4 points5 points ago

Enemy of the nighttime

What article of clothing do you immediately judge a stranger for wearing? by nerenin AskReddit

[–]zserf 0 points1 point ago

If I don't wear sweatpants I get a lot of questions because it is such an anomaly.

What is the most shameless joke you have ever heard? by TikiTukuin AskReddit

[–]zserf 0 points1 point ago

My mom went to a wedding where the priest said this during the ceremony.

10 Misconceptions Debunked by MindOfMetalAndWheelsin videos

[–]zserf 14 points15 points ago

Unless they are Athabaskan, Aleut, Eyak, Haida, Tlingit, Tsimshian, Yupik or part of another non-inuit tribe.

New Hampshire Senate passes bill that allows defense attorneys to state the right of jury nullification to the jury. by [deleted]in politics

[–]zserf 1 point2 points ago

Wrong state, that was Iowa. Santorum got 5th in New Hampshire.

Ron Paul finishes last in South Carolina by nicksaucein politics

[–]zserf 20 points21 points ago* 

According to Wikipedia, Romney only has 25 delegates before South Carolina, but Huntsman's 2 are almost definitely going to him. Perry's 3 should go to Gingrich

According to fivethirtyeight.com, Gingrich is expected to win atleast 5 of the 7 districts, and possibly all 7. If he wins all 7, that would put the totals at
Romney: 27
Gingrich: 27
Paul: 10
Santorum: 8

The latest polls out of Florida have Romney at 42% and Gingrich at 25%. News out of South Carolina is likely to affect those numbers though. You need 1144 delegates to get the nomination.

Edit: There is significant uncertainty as to who will get exactly how many delegates from Iowa. They have several conventions, so keep that in mind.

Also, The only candidates on Virginia's ballot are Romney and Ron Paul. As far as I can tell, there are 46 candidates awarded to the winner. Technically, it's proportional unless somebody gets more than 50%, in which case it is winner take all. Seeing as there are only 2 candidates, somebody is going to get a majority.

My sister's boyfriend was told that he might have a tumor. It turned out to be his kidney. Doctors of reddit, what's the most embarrassing mistake you've made on the job? by InanimatePhoenixin AskReddit

[–]zserf 0 points1 point ago

Shit, that's almost the exact same story that happened to me! I don't know if there was any contract with my mom though. The umbilical cord was wrapped around my neck which caused a brain hemorrhage.

anyone have any socially awkward experiences to share? by heartlinesin introvert

[–]zserf 2 points3 points ago

"You haven't said much"
"I know". (alternatively, "I haven't had much to say")

Does that answer your question? by yogsmcgogsin atheism

[–]zserf 0 points1 point ago

Reports don't do anything directly, but they do highlight the comment whenever a subreddit moderator happens to see it. My hope is that by reporting it, it will draw attention to the fact that the information is in the page, which breaks the "no personal information" rule (albeit unintentionally).

I see a Pattern here by Panda_paddlein atheism

[–]zserf 0 points1 point ago

don't

view more: next