Slashdot Mirror


Yahoo, Facebook Test "Six Degrees of Separation"

An anonymous reader writes "Yahoo has partnered with Facebook to test the iconic social experiment known as 'six degrees of separation' (everyone is on average approximately six steps away from any other person on Earth). The goal of the Small World Experiment is to determine the social path length between two strangers by tapping into the world's largest social network and its 750 million users, each of whom have an average of 130 friends." Looks like a fun project, but not quite as useful as knowing how close you are to Kevin Bacon.

228 comments

  1. its a scam by Anonymous Coward · · Score: 1, Insightful

    neither of these two do anything except for cash...guess now what they do with such knowledge.
    AND WHY are i not being paid to do this?

    1. Re:its a scam by WrongSizeGlass · · Score: 0

      WooHoo! Now I'm only one step away from you, Anonymous Coward.

    2. Re:its a scam by wiedzmin · · Score: 3, Insightful

      I know it sounds like trolling, but you may have a valid point - Facebook knows exactly who is connected and how - they should be easily able to pull a report and see if 6 degrees of separation is true (sure there may be privacy concerns, but they can just add that as an opt-out feature again, not a big deal). This seems like an elaborate/obscure marketing campaign in wake of Google+ :)

      --
      Bow before me, for I am root.
    3. Re:its a scam by Anonymous Coward · · Score: 0

      Not any more! I unfriended you!

    4. Re:its a scam by Anonymous Coward · · Score: 0

      Now you're in an AC sandwich!

    5. Re:its a scam by WrongSizeGlass · · Score: 0

      Not any more! I unfriended you!

      Well, it's your loss because according to the post below I now have a sandwich!

    6. Re:its a scam by Joce640k · · Score: 1

      My first thought: They're setting up a 'partnership' to do this?? Surely they either (a) already know, or (b) can do it in less time than it took to type out that summary.

      --
      No sig today...
    7. Re:its a scam by Anonymous Coward · · Score: 0

      I'm not sure it's even a privacy issue if they don't release any user information. They can do all the analysis they want on their own data, or provide re-numbered, stripped records to yahoo, where the relationships have been maintained. Still no personal info given out.

    8. Re:its a scam by Anonymous Coward · · Score: 0

      In that case, I'll refriend you!

    9. Re:its a scam by Tolkien · · Score: 1

      You and GP don't know much about math, do you? This (the Small World problem) is a combinatorial problem and as such a massive computational undertaking, especially for 750,000,000 accounts.

    10. Re:its a scam by NoOneInParticular · · Score: 1

      Depends. If they're looking for the average length between two randomly chosen accounts, a few hundred tries should give them a pretty good estimate. If they're looking for the longest path, just find a guy with no friends on facebook (for instance me, I created an account to see what facebook was all about. Now that's 10 minutes of my life I will not get back), and state that it's infinite. Not a particularly hard problem.

    11. Re:its a scam by cowboy76Spain · · Score: 1

      Depends. If they're looking for the average length between two randomly chosen accounts, a few hundred tries should give them a pretty good estimate. If they're looking for the longest path, just find a guy with no friends on facebook (for instance me, I created an account to see what facebook was all about. Now that's 10 minutes of my life I will not get back), and state that it's infinite. Not a particularly hard problem.

      Ok, they chose person A and person Z. Person A has 130 "friends", they scan them and neither is person Z. So, for each of person A's first grade friends, they search their 130 friends. There will be some repeated, but still it is very close to 130^2. Now none of these is person Z so they do the next step and have to manage 130^3... Numbers go up quickly.

      Also, probably they will not be doing a single pair but a more representative set, so add at least a couple of orders of magnitude...

      --
      Why can't /. have a rich-text editor? Editing your own HTML is so XXth century.
    12. Re:its a scam by Anonymous Coward · · Score: 0

      And if you read the agreement they want you to sign up to in order to participate, it seems even more like a scam.

    13. Re:its a scam by biodata · · Score: 1

      The problem might not grow quite so quickly as it seems at first, there are likely some optimisations to be had here. If person A and person Z are known at the start, then the search can proceed from both start points at the same time, and only needs to continue until a node is found in both result sets. Assuming six degrees of separation, then I guess it should only take three hops on average before the two graphs intersect (130^3). Also, bear in mind that quite a few of a person's friends will also be each others' friends, cutting down the number of outward edges from the result set, so it starts to look more like something of the order of (total guesswork here, but you get the point) 130*70*40. Then, parallelising, so you look at say, 100 people's friend sets at a time, it starts to look much more tractable.

      --
      Korma: Good
    14. Re:its a scam by arth1 · · Score: 1

      I created an account to see what facebook was all about. Now that's 10 minutes of my life I will not get back), and state that it's infinite. Not a particularly hard problem.

      But it seems that it will be very easy to break the assumption of six degrees of separation by expanding on your experiment:

      Create seven accounts.
      Have them friend each other in a chain, and link just one end of the chain to a few real accounts, with the rest of them private.
      Now there will be at least 7 degrees of separation between anyone not in your chain and the end of the chain.

    15. Re:its a scam by gr8_phk · · Score: 1

      You and GP don't know much about math, do you? This (the Small World problem) is a combinatorial problem and as such a massive computational undertaking, especially for 750,000,000 accounts.

      So to undertake a large problem where their computers contain all the data, they opted to involve the users too? You know, just to reduce the problem to a random sample of willing participants and to make the computational burden even higher at each step (user interaction). Yep, seems like a scam to me. And the partnership and user permission means Yahoo will have access to the Facebook friend-graph.

    16. Re:its a scam by Anonymous Coward · · Score: 0

      I raise the refriend and unfriend u.

    17. Re:its a scam by RockMFR · · Score: 1

      There are all kinds of strategies that can be used to speed this up.

      Let's say that we're trying to find a short path between someone in the US and someone in China. Start by trying to find a link that allows you to hop the Pacific ocean as quickly as possible. Try to find an American friend of the Chinese guy, or vice versa. When you've got it to two people in the same country, then start picking the nodes that allow you to hop the greatest distance.

      You could come up with a group of highly-connected people to start with - the people who have lots of connections in various countries, economic classes, interests, etc. Create a graph of these people and pre-compute all the shortest paths between them. Then when you're going through all the combinations, you just need to get to brute-force your way to this central graph.

      Of course this won't get you the shortest path between each pair of people, but it'll probably get you pretty close. Close enough to say if an average of "six degrees" is reasonable.

    18. Re:its a scam by Zorpheus · · Score: 1

      My idea to solve this problem: Starting from a random person, look up all the friends, look up all their friends and so on. For each step count the total number of "friends of friends". If after 6 steps it it would be 50% of all facebook accounts, it would mean that 50% of all people on facebook are within 6 degrees of separation from that person.
      If the list of facebook accounts is converted to a serially numbered list, and the friends lists to lists of account numbers, the whole database would be just 100GB (750 Mio accounts, 130 friends each, 4 bytes per friend). A bit array to check which accounts are in the n'th "friends of friends" list is just 100MB. It should be no problem to run this on a home computer, with the bit array in memory and the facebook database on the hard disk. One "friends of firends" iteration would take just 20 minutes, if we assume that the program just goes through the whole database once.

    19. Re:its a scam by Zorpheus · · Score: 1

      Little correction... the database will be 400GB, so an iteration would take up to 70-80 minutes.

  2. facebook yahoo data sync? by AwesomeMcgee · · Score: 2, Insightful

    So does this mean that even though I have explicitly not given my yahoo account to my facebook account, they're about to sync with eachother anyway? Great.

    1. Re:facebook yahoo data sync? by grimmjeeper · · Score: 1

      I know there's little to no chance that my Yahoo accounts will know about my other accounts. I haven't updated any of my personal information (such as where I live) in either of them. One has a location from 3 moves ago, the other from 4 moves. There's little to no chance of the accounts syncing with each other, much less with anything I might have on a social networking site.

      The key is that all of these social networking sites and email providers only have the information you give them. They can guess at a few things but really, they won't have the information if it's not provided to them in the first place.

    2. Re:facebook yahoo data sync? by iggymanz · · Score: 1

      you forget about all the facebook web beacon javascript, all the major websites have them. (noscript ftw!)

    3. Re:facebook yahoo data sync? by iggymanz · · Score: 1

      yes, and more importantly, they'll have new opportunities for selling marketing data and data mining services.

              win-win all around for the both of them

      Everyone should drop the facebook, and get their own virtual host website for less than $5 a month, and put pictures and have comments / blog there. Or set up a web server at home and use a free dynamic dns, it's good geeky fun. plenty of my-website-in-a-can packages out there.

    4. Re:facebook yahoo data sync? by Amorymeltzer · · Score: 1

      FTFA:

      Anyone with a Facebook account can participate to verify if everyone is on average approximately six steps away from any other person on Earth. You’ll be asked to select one of your Facebook friends whom you believe is most likely to know the “target person” that has been assigned to you. A message will then be sent from friend to friend until you get it to the “target person.” The goal is to do this in as few steps as possible.
      [snip]
      Yahoo and Facebook hope to attract many times more participants than has ever been attempted before. The study is intended as academic social research and will be published in a peer-reviewed scientific journal.

      Seems like a really poor way to go about doing it. Might as well just do the calculations themselves. Much faster, and will produce a vastly more reliable answer.

      --
      I live in constant fear of the Coming of the Red Spiders.
    5. Re:facebook yahoo data sync? by AngryDeuce · · Score: 1

      It was bound to happen eventually.

    6. Re:facebook yahoo data sync? by WrongSizeGlass · · Score: 2

      you forget about all the facebook web beacon javascript, all the major websites have them. (noscript ftw!)

      And about everyone he knows who has him in their address book and friends list.

    7. Re:facebook yahoo data sync? by geogob · · Score: 1

      This seems like a totally absurd way of doing it... it will only use a minimal fraction of the information available, and that in the most inefficient and unreliable way possible.

      If this is really how they hope to achieve results, they might as well walk on the street and ask people.

    8. Re:facebook yahoo data sync? by Lumpy · · Score: 1

      wordpress is easier for non nerds...

      --
      Do not look at laser with remaining good eye.
    9. Re:facebook yahoo data sync? by grimmjeeper · · Score: 1

      Yep. Even this site uses google-analytics. It's scary how much information is picked up from your surfing habits almost anywhere on the web.

    10. Re:facebook yahoo data sync? by rubycodez · · Score: 2

      they don't use the "personal information" fields (too many people same name, same age, same city), that's not how the game of internet marketing and tracking is played. 3rd party javascript on the websites you visit, 3rd party cookies, your browsers cached data compared between successive sites with common 3rd party content, pixel beacons in emails and web pages, friend lists, social networking profiles used as shortcut for registration.

    11. Re:facebook yahoo data sync? by jeffmeden · · Score: 2

      Seems like a really poor way to go about doing it. Might as well just do the calculations themselves. Much faster, and will produce a vastly more reliable answer.

      I also enjoy the constant use of the adjectives "average" and "approximately" whenever the magic "six steps" are mentioned. I can tell you right now that everyone is on average, approximately 6 steps away from everyone else. (for certain large definitions of approximately, and for a certain averaging method which will be named later.)

    12. Re:facebook yahoo data sync? by Anonymous Coward · · Score: 0

      "Everyone should drop the facebook, and get their own virtual host website "

      Uh, right.

      The value of a social network is determined by the number of users it has. Facebook has 750 million. Your own private server, EVEN IF people know how the hell to set one up, which they don't, will only have a few. Thus, it will be nearly useless compared to facebook.

      Not to mention that people have NO IDEA how to set up and run their own web host, they don't want to know, and shouldn't have to know. Computers should not be that difficult to operate.

      What you want only works in your fantasy world, not in the real one. This is a common thing with slashdot geeks: they don't understand that they're in a tiny tiny niche and most people want very different things.

    13. Re:facebook yahoo data sync? by Nursie · · Score: 1

      Noscript, Adblock, Flashblock, Cookie Monster, Better Privacy. Flush browser cache on exit. New email address for every site I join. A few other tricks...

      Makes the web a much nicer place and my habits much harder to correlate between different places.

      I mean except panopticick type stuff browser fingerprinting, but then I'm not sure how much of that data can get back to the site without various forms of scripting.

    14. Re:facebook yahoo data sync? by Scaba · · Score: 1

      Likewise, everyone should drop their phone company and set up their own CLEC. Or maybe everyone else isn't a socially hostile and ultra paranoid geek and are willing to trade information that's publicly available anyway for a convenient and centralized site for social interaction.

    15. Re:facebook yahoo data sync? by Anonymous Coward · · Score: 1

      Noscript, Adblock, Flashblock, Cookie Monster, Better Privacy. Flush browser cache on exit. New email address for every site I join. A few other tricks...

      I'm waiting for the day when that list gets amended with "manually render HTML/CSS on paper, inspect each bit as it comes over the network cable, turn off the computer, bury it in concrete, lock doors, hide from world". Because to the rest of the world, that's what it sounds like you're working towards.

    16. Re:facebook yahoo data sync? by digitig · · Score: 1

      The whole thing is irrelevant anyway. It assumes that everybody in the world has a Yahoo or Facebook account. The challenges for the degrees of separation theory are people in remote areas who have never seen a mobile phone, never mind a computer. So at best it's just a Yahoo/Facebook marketing trick. Everybody who matters is within n degrees of separation, where "matters" is defined as "has a Yahoo and/or a Facebook account."

      --
      Quidnam Latine loqui modo coepi?
    17. Re:facebook yahoo data sync? by AlienIntelligence · · Score: 1

      "Everyone should drop the facebook, and get their own virtual host website "

      Uh, right.

      The value of a social network is determined by the number of users it has. Facebook has 750 million. Your own private server, EVEN IF people know how the hell to set one up, which they don't, will only have a few. Thus, it will be nearly useless compared to facebook.

      Not to mention that people have NO IDEA how to set up and run their own web host, they don't want to know, and shouldn't have to know. Computers should not be that difficult to operate.

      What you want only works in your fantasy world, not in the real one. This is a common thing with slashdot geeks: they don't understand that they're in a tiny tiny niche and most people want very different things.

      LOL!!!

      POWER WHOOSH!

      I like waking up and being able to read a good chuckle-worthy post, quickly.

       

      This is a common thing with slashdot geeks: they don't understand that they're in a tiny tiny niche and most people want very different things.

      This is a common thing with slashdot geeks: they don't understand when they've read a whooooooooooosh.

      tftfya

      -AI

      --
      For me, it is far better to grasp the Universe as it really is than to persist in delusion
    18. Re:facebook yahoo data sync? by Nursie · · Score: 1

      Pretty much.

      I recognise entirely that this only solves the problem for me and not for the average user, and it's not even a full solution - occasionally I have to start up chrome because some or other site that I want to use in a more than read-only way won't work.

      But I'd rather do this than have a slower, more annoying web experience and be tracked constantly. There is far, far too much active content on the web IMHO. The fact that the browsing experience is (for the majority of sites I care to visit) actually *better* tells me that something is rotten in the state of web development in the modern world.

    19. Re:facebook yahoo data sync? by blacklint · · Score: 1

      Wait... that description *isn't* about some random chain mail spam, but something with two major companies behind it? Seriously?

    20. Re:facebook yahoo data sync? by Anonymous Coward · · Score: 0

      Fine - Good fucking job. Mod me down because I appreciate my privacy. Hope that felt good. I hope you still feel that good when big business can buy more information on you than you give your doctor.

    21. Re:facebook yahoo data sync? by Joce640k · · Score: 1

      You might be missing out on some great deals just because they can't connect you to the relevant offers.

      --
      No sig today...
    22. Re:facebook yahoo data sync? by TheLink · · Score: 1

      Call me cynical. but Facebook already knows the result, this is just another way to gather even more information from their users.

      --
    23. Re:facebook yahoo data sync? by WidgetGuy · · Score: 2

      You might want to add this to your list of privacy-enhancing tools: Should also work with Linux and Mac.

      Example:

      127.0.0.1 www.google-analytics.com #[Google Analytics]
      127.0.0.1 4.afs.googleadservices.com

      Google, alone, has over 100 entries like the above in my HOSTS file. Speeds up surfing. In Firefox, at least, you do take a performance hit when you restart the browser after making any change to this, rather large, file. No noticeable lag at startup after that until you make another change to HOSTS.

      I use just about every Firefox privacy plug-in/extension mentioned in this thread. This is the only one that actually, noticeably, improves browsing performance.

      --
      One "Aw, Shit!" is worth 100 "Ata boys!"
    24. Re:facebook yahoo data sync? by Anonymous Coward · · Score: 0

      AdBlock Plus can prevent any attempt by a page to access google-analytics.com, which is just as good as blocking it in hosts. The only thing it won't block is typing "www.google-analytics.com" in the address bar and hitting Enter. (Although you could use element hiding to block the HTML element of the domain, like I've done for goat.cx and a few other nuisances.)

    25. Re:facebook yahoo data sync? by cayenne8 · · Score: 1
      Not to mention, that they can purchase other databases of info....like some states sell drivers license info. You can buy the change of address database from the USPS...stuff like that you can use to 'clean' your data.

      Companies like Acxiom do this all the time.

      In fact..likely as not, facebook already uses them to help 'clean' data....lots of companies do like Visa, etc...

      --
      Light travels faster than sound. This is why some people appear bright until you hear them speak.........
    26. Re:facebook yahoo data sync? by Cytotoxic · · Score: 1

      I found out just how accessible information can be several years ago when I worked on a project involving a collections/skiptracing firm. For a quarter you could get conglomerations of various data sources that would pinpoint most targets current location - including address and phone number. One guy they were looking for while I was in the office was tough enough to find they sent it out to one of their private investigators. For $75 he not only found the guy's location (a secluded island only reachable by boat), he also found his mailbox number and the schedule that he followed for checking mail.... and most scary of all, he managed to get the combination to the guy's front gate. And word to the wise: the PI didn't use any leet computer hacking skills, he used a telephone and a little pretexting to get all the info he wanted and more.

    27. Re:facebook yahoo data sync? by Anonymous Coward · · Score: 0

      You forgot about Ghostery.

    28. Re:facebook yahoo data sync? by iggymanz · · Score: 1

      my phone company doesn't write down my conversations and sell them to interested telemarketers based on content. my phone company doesn't bring strangers to the front door based on things I've said on the phone or who I've dialed.

    29. Re:facebook yahoo data sync? by iggymanz · · Score: 1

      no, the value of a social network is having some people that you can meaningfully communicate with, and enjoy communicating with them.

      A social website of one's own will be more useful, for having real friends. Very easy to set up, non-computer great-grandmas do it in minutes.

  3. Artificial Test in an Artificial World ... by foobsr · · Score: 2, Insightful

    TFS: " each of whom have an average of 130 friends "

    ... where the validity of hitherto common concepts vanishes.

    CC.

    --
    TaijiQuan (Huang, 5 loosenings)
    1. Re:Artificial Test in an Artificial World ... by alen · · Score: 1

      i'm at about this number. doesn't mean i hang out with everyone but i've known these people at some point in my life. some people i haven't seen for years

      i'm less than 6 degrees from an old country music star and a dentist in florida who's in jail for killing his wife 20 some years ago.

    2. Re:Artificial Test in an Artificial World ... by V-similitude · · Score: 1

      Well, the 6-degrees hypothesis isn't actually concerned with friends, but rather with any acquaintances at all. So facebook's version of "friends" fits the bill pretty well. Though if I were doing this, I would certainly try to exclude people who have over, say, 500 or so friends just on the basis that they're likely to be faked somehow (either due to social gaming, or whatever).

      My question though, is why can't facebook just run a simple algorithm to test the max degrees of separation between any two people? The method described in TFA seems like a rather contrived and not-particularly-valid way to test the hypothesis. In fact, it almost feels like it's more of a publicity stunt than a real scientific study . . . .

    3. Re:Artificial Test in an Artificial World ... by AngryDeuce · · Score: 1

      Wait, so you're telling me the people that I play Mafia Wars with aren't really friends?!?!!

    4. Re:Artificial Test in an Artificial World ... by DavidShor · · Score: 2

      The idea is that you provide meta-data along the way (I know this person through school, this person is a good friend, etc).

    5. Re:Artificial Test in an Artificial World ... by vlm · · Score: 2

      My question though, is why can't facebook just run a simple algorithm to test the max degrees of separation between any two people?

      I think it would be both interesting and hilarious for FB or G+ or any of those social networking sites to offer a "penpal" service where you get to meet the dude on the social opposite/antipode of the planet from you (who none the less has a common language with you). Kind of like a grown up version of writing to pen pals when you were a schoolchild.

      My "social antipode" would probably be a bilingual Pakistani Imam, or maybe a neolithic-era African tribesman (essentially, I'm thinking of their continent's version of our Amish) with a smartphone, or someone really far out like a Floridian Tea Party member. I think it would be weirdly interesting to talk with people like that, rather than the "yes man echo chamber" that is most social networking sites.

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    6. Re:Artificial Test in an Artificial World ... by bratloaf · · Score: 1

      This is a really neat idea... I think you should probably submit it to Google and/or Facebook. Wouldnt it be possible to write an app that would do this? I mean, yes youd have to somehow have access to the FB/G+ data, but in a possibly generic way? Like your code determines the "anitpode" characteristics, and queries FB/G+ for some matches, which you anonomize and display to choose from somehow?

      Pretty cool idea, I gotta say....

    7. Re:Artificial Test in an Artificial World ... by AlienIntelligence · · Score: 1

      My "social antipode" would probably be a bilingual Pakistani Imam,

      Congratulations... you're a winner of a nice, new, shiny warrantless wiretap.

      --
      For me, it is far better to grasp the Universe as it really is than to persist in delusion
    8. Re:Artificial Test in an Artificial World ... by Tomji · · Score: 1

      I've seen teenagers (my niece) post these spam thing, like say a number and I will tell you what I think of you.
      To around 50% of the people he said: Mhhh I am not sure who you are!

    9. Re:Artificial Test in an Artificial World ... by biodata · · Score: 1

      That's really interesting, and a difficult challenge computationally (see comments above about how to work out degree of separation - finding the polar opposite would be even harder I think). The other thing I wonder is whether FB is a connected graph? Are there continents in there with no bridging friendships at all? I think we should be told! There could be a competition to be the friend who bridges continents (although my hunch is that the whole graph might be more or less connected already).

      --
      Korma: Good
    10. Re:Artificial Test in an Artificial World ... by Bitsy+Boffin · · Score: 1

      > some people i haven't seen for years

      In which case, these people are NOT your friends. At best, they are acquaintances but frankly it's a stretch to even call them that.

      --
      NZ Electronics Enthusiasts: Check out my Trade Me Listings
    11. Re:Artificial Test in an Artificial World ... by Anonymous Coward · · Score: 0

      "A friend will help you move. A real friend will help you move a body."

      Different people have different definitions for what makes a real friend, but usually it involves some sort of rough time. How many of those 130 will be there when it happens? Or, better yet, for how many of those 130 will you be there when it happens to them?

      PS: If you haven't yet worked out what makes a real friend you may have bigger problems, unless you're still a kid.

    12. Re:Artificial Test in an Artificial World ... by Anonymous Coward · · Score: 0

      There's an old salesman concept known as, "The rule of 200". Basically, there was some research done some time ago that determined there's an average of 200 people that will show up at a wedding, and at a funeral. What that means to the salesman is; if you mistreat a customer, that customer knows 200 people that are close enough to show up at the most important times of his life, and he will talk shit to them about you.

      Anyway, yeah, the number seems about right.

    13. Re:Artificial Test in an Artificial World ... by JimFive · · Score: 1

      My question though, is why can't facebook just run a simple algorithm to test the max degrees of separation between any two people? The method described in TFA seems like a rather contrived and not-particularly-valid way to test the hypothesis. In fact, it almost feels like it's more of a publicity stunt than a real scientific study . . . .

      I think the underlying purpose for FB is to get people to either a) send friend requests to people they know but haven't friended. (Increasing FBs knowledge about those people) Or b) send invites to people they know who aren't on FB (gaining a user, and knowledge for FB). The (false) incentive for the user is that it will reduce their degree of separation from the rest of the world. For this to work to FBs advantage they should send match ups that they have already determined do not have a path in their existing data.
      --
      JimFive

      --
      Please stop using the word theory when you mean hypothesis.
  4. "connected" by facebook, really? by magarity · · Score: 1

    How do they determine real connections vs just having browsed some random strangers' cute/funny/whatever profile and saving it just for that? I'm pretty sure the original theorist would scoff at the notion that's a real social connection. LinkedIn would be much better but even then you'd have to filter out all the recruiters.

    1. Re:"connected" by facebook, really? by AngryDeuce · · Score: 1

      Oh come on, everyone knows that a "friendship" based on Farmville is just as deep and meaningful as a traditional friendship. None of my "real" friends cared when I got the Golden Tractor...

    2. Re:"connected" by facebook, really? by mfh · · Score: 2

      Real science is always scoffed at buy businessmen because it often gets in the way of profit. Profit is only generated by bullshitting people, and science is the act of making people see the facts. No businessman wants you to see the facts or even consider them.

      Think about it. Someone buys something ridiculously cheap and resells it for insane profit. That's crazy! But it happens every day and even SCIENTISTS buy things at five times the standard material price, or more! Except of course, DIY people. These are the purist scientists who not only know how to put things together but they also know how to create things with their hands that are better than marketed versions of the product for a number of reasons.

      --
      The dangers of knowledge trigger emotional distress in human beings.
    3. Re:"connected" by facebook, really? by magarity · · Score: 4, Funny

      Get help before you end up like Kaczynski.

    4. Re:"connected" by facebook, really? by Anonymous Coward · · Score: 0

      Help with what? Our society is bullshit and everyone needs to know it.

    5. Re:"connected" by facebook, really? by aztracker1 · · Score: 1

      I think it really depends on what you are trying to build... if you want something that fits more precise specs, you are unlikely to even match off the shelf equivalents. Even building a PC at near what some of the OEMs do is difficult, and pretty much impossible in the low-mid range if you include a $100 OEM license. Making a table/couch/cabinet will often cost more in materials alone, let alone time, and investment in equipment needed. Having a hobby, or being an enthusiast doesn't mean it's less expensive. Often times its several times more expensive. Now value and craftsmanship are another issue entirely, but from a utilitarian standpoint it's hard to match OEMs, flat pack furniture (IKEA), the big box stores (Best Buy) and the uber-markets (Wal-Mart).

      --
      Michael J. Ryan - tracker1.info
    6. Re:"connected" by facebook, really? by Anonymous Coward · · Score: 0

      Help with what? Our society is bullshit and everyone needs to know it.

      Is that the first line in your manifesto?

    7. Re:"connected" by facebook, really? by highlander76 · · Score: 2

      The article mentions that messages will be sent to the friends. I suppose the theory is that a stranger will just ignore the request while someone with a true connection will participate. It is not just parsing the map of connections among facebookers.

    8. Re:"connected" by facebook, really? by X86Daddy · · Score: 1

      Kaczynski was anti-technology... GP has a two digit Slashdot ID and still posts!

    9. Re:"connected" by facebook, really? by mfh · · Score: 1

      Isn't that an extreme case, magarity? Do you really think I'm going to end up like Kaczynski because I think people in general prefer falsehoods over scientific fact? We pander to businesses that provide us with a false case.

      We love movies and we love music. Music is all about how some girl loves you and she's gonna sleep with you if you buy the right cologne or if you drive the right car. Movies are all about perpetuating the lie that women won't sleep with you unless you're cut-throat in business and have lots of money and a great body. For women flip it around. The film industry foists its beliefs upon young girls that they have to look a certain way or they won't get asked to the prom. So they shove fingers in their throats to try and fit the mold.

      Facebook is just a business like other businesses and they are going to try and make people believe this stuff matters and has merit, but that notion is false. Six degrees of separation on Facebook will not get Bill Gates or Warren Buffet to invite you to their private members only club for a game of golf and a Swedish massage. It won't get them to buy something from you. It won't get those kinds of people to notice you.

      It won't get you a date, either. :) Okay it MIGHT get you a date but you'll seem like a total stalker if you try.

      --
      The dangers of knowledge trigger emotional distress in human beings.
    10. Re:"connected" by facebook, really? by Anonymous Coward · · Score: 0

      I think we have found who bought that low UID a few years ago.

    11. Re:"connected" by facebook, really? by Anonymous Coward · · Score: 0

      You are nothing but a 'Cultural Marxist'

    12. Re:"connected" by facebook, really? by Eivind · · Score: 1

      Buying things at 5 times material price is not always insane, indeed in many cases it can be perfectly rational. 5 times is not even a particularily high factor.

      But "material price" is a silly measure anyway - The fair price for $10 worth of chemicals and 10 hours of work, is not $10. It's $10 + 10 times the hourly wage of the person performing the work at a minimum. (in practice it's more, since most operations have -some- sort of overhead that needs to be covered to break even)

      Even if you just buy and sell, the distribution might be worth quite a bit. A containerfull of cheap toys in a warehouse in China might cost $0.50/each - then after it's shipped, distributed and sold at retail, you might find that the items are sold for $5 each - ten times the price. Nevertheless it's perfectly possible that nobody in the chain is making insane profits.

    13. Re:"connected" by facebook, really? by Eivind · · Score: 1

      I think you're watching the wrong movies and listening to the wrong music, seriously. Besides, the "lies" you talk about are more like exagerations in reality.

      True, it's not a *requirement* to be rich and handsome to have success in the dating-market, but equally true; it sure as hell doesn't hurt.

      You're right though that this stuff don't matter. Any degree above 1 is pretty meaningless. If we've got a shared friend, especially if it's a close friend of ours, you might assign that some weight and treat me slightly differently to how you'd treat a total stranger, but anything beyond that, is meaningless.

    14. Re:"connected" by facebook, really? by magarity · · Score: 1

      Isn't that an extreme case.

      No; I don't have any patience for hard core Marxists saying nonsense like profit only comes from bullshit. Profit is just rent on capital. Have a good time sustenance farming on the commune.

  5. Sounds Great! by jimmerz28 · · Score: 3, Insightful

    Oh whoops while we were performing this test we accidentally shared a whole bunch of private information with our partners.

    1. Re:Sounds Great! by AwesomeMcgee · · Score: 1

      On the bright side, I have suddenly been getting these AMAZING offers in my e-mail!

    2. Re:Sounds Great! by alphatel · · Score: 1

      Oh whoops while we were performing this test we accidentally shared a whole bunch of private information with our partners.

      ...and transmitted your wifi ssid and geolocation, provided access to your account to a 3rd party without a password, and inadvertently disclosed to law enforcement that you were browsing news articles that favored hacking as a form of right to free speech.

      But it's okay we fixed all that recently.

      --
      When the foot seeks the place of the head, the line is crossed. Know your place. Keep your place. Be a shoe.
    3. Re:Sounds Great! by Anonymous Coward · · Score: 0

      i LOLed

    4. Re:Sounds Great! by Syberz · · Score: 1

      LOL, read the privacy terms, it wasn't accidental.

      --
      ~Syberz
    5. Re:Sounds Great! by g253 · · Score: 0

      (reply to undo accidental mod)

    6. Re:Sounds Great! by rainhill · · Score: 0

      Not funny at all.

  6. Paul Erdos by Ecuador · · Score: 4, Insightful

    The editor should be banished from /. for mentioning the Bacon number and not the Erdos number.

    --
    Violence is the last refuge of the incompetent. Polar Scope Align for iOS
    1. Re:Paul Erdos by beef3k · · Score: 1

      Yes. Slashdot - a place with noone but maths geeks with no other purpose in life than achieving the highest possible Erdos number. (who's this Kevin Bacon anyway...?)

    2. Re:Paul Erdos by szo · · Score: 1

      Smallest. Shame on you for this!

      --
      Red Leader Standing By!
    3. Re:Paul Erdos by Anonymous Coward · · Score: 0

      Kevin Bacon is no more than 6 steps from Erdos, maybe as few as 3.

    4. Re:Paul Erdos by Anonymous Coward · · Score: 0

      To be fair, he did not say "largest". You could say for example I got the highest place in the test, meaning the 1st place...

    5. Re:Paul Erdos by Anonymous Coward · · Score: 0

      Bacon is delicious.

    6. Re:Paul Erdos by Anonymous Coward · · Score: 0

      You could say for example I got the highest place in the test, meaning the 1st place...

      That would be because your score on the test was larger than any other score. Nit-picky, yes.

    7. Re:Paul Erdos by vlm · · Score: 2

      Smallest. Shame on you for this!

      Anybody can get a low erdos number. I have a semi-distant acquaintance with a "3" so it would not be terribly difficult for me to score a "4". Perhaps I could help her prove something on a compute cluster, to get credit on one of her papers.

      The real challenge is getting a high number. You must publish or perish. To publish you'll probably have to collaborate, what comes around goes around and if you want to be listed on 10 papers that you didn't do much on them, you've gotta accept ten freeloaders on your paper... Practically everyone in academia is somewhere from an erdos of "2" to I'm guessing at most maybe a "5".

      I could postulate a theorem that it is impossible to be listed as author in more than a dozen published papers and have an erdos above 6. I think it would be pretty difficult if not absolutely impossible. Of course maybe in 1000 years erdos numbers like 50 will be commonplace...

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    8. Re:Paul Erdos by JustOK · · Score: 0

      my erdos number is sqrt(-1)

      --
      rewriting history since 2109
    9. Re:Paul Erdos by Ecuador · · Score: 2

      Anybody can get a low erdos number. I have a semi-distant acquaintance with a "3" so it would not be terribly difficult for me to score a "4".

      That's because of your definition of "low". A 4 is low for the number of kittens in cat lady's house, or the magnitude of an earthquake, but it is not low for an Erdos number, with the median being 5 and the average 4.65. So 4 is, as you too realize, very common and thus is far from being considered "low".
      Low Erdos number means 1, 2 or at most 3.

      --
      Violence is the last refuge of the incompetent. Polar Scope Align for iOS
    10. Re:Paul Erdos by Nursie · · Score: 0

      Meh, never heard of this Erdos number, but I''m proud of my own Bacon Number of 3 :)

    11. Re:Paul Erdos by Anonymous Coward · · Score: 1

      My Bacon number (stage) is 4, but my Erdos number (publication) is 5. Does that make me less of a geek.

    12. Re:Paul Erdos by blair1q · · Score: 1

      who's this Kevin Bacon anyway

      Some guy with an infinite Erdös number.

    13. Re:Paul Erdos by Anonymous Coward · · Score: 0

      it would be nice to have more data than just median and average. it would be nice to have a visualization of all those connections, to see what hubs and bottlenecks are in the social networks. (and what happens when you severe one of those connections and redraw the graph)

    14. Re:Paul Erdos by LanMan04 · · Score: 1

      Mine is 4! /flex

      --
      With the first link, the chain is forged.
    15. Re:Paul Erdos by rleibman · · Score: 1

      Fail... Bacon's Erdös number is 3 (since Daniel Kleitman's Erds–Bacon is also 3)

  7. Travelling Salesman by ZombieBraintrust · · Score: 1

    I wonder how they get around computational complexity of this kind of thing. I bet it doesn't try to find the smallest number of degrees of sepperation. Or since it is between you and a stranger it just does a random walk and returns who ever is at the 6th position who isn't in either of your fiiends list. http://en.wikipedia.org/wiki/Travelling_salesman_problem

    1. Re:Travelling Salesman by Ragondux · · Score: 5, Informative

      It's not a travelling salesman problem, it's a shortest path problem, and as such is much easier. For the distance between two specific people, you'd need the Dijkstra algorithm, and for the distance between any two people, you could use Floyd-Warshall. This one is in O(n^3), where n is the number of users; that's a big number, but it's nowhere near the (supposed) complexity of the TSP.

    2. Re:Travelling Salesman by grumbel · · Score: 1

      Travelling salesman doesn't seem to be an issue here, as the six-degrees of separation thing is a simple exercise of finding the shortest path between two people, not finding the shortest path crossing N people (with large N). And path finding isn't very complex, just throw some Dijkstra's algorithm at it and be done with it.

      Of course what they are doing in the "experiment" (ad campaign?) isn't actually finding the shortest path, its about letting the users themselves try to find it by sending messages via their friends to a target person and then looking at how many friends it took.

    3. Re:Travelling Salesman by mcavic · · Score: 1

      This has been done before. There used to be a site called Six Degrees, which was a social network that showed your contacts at various distances.

    4. Re:Travelling Salesman by DavidShor · · Score: 1

      Right. Probably the best way to do it is to randomly draw a couple thousand UID's and run Dijkstra. Then you can do all sorts of neat stuff like geodesic distributions.

    5. Re:Travelling Salesman by Rockoon · · Score: 1

      ..and it wont actually have a runtime of n^3 steps if the 6-degree theorem is correct.. O(n^3) is the worst case, while it would actually perform like O(n^2) when given high levels of interconnectivity

      --
      "His name was James Damore."
    6. Re:Travelling Salesman by dotancohen · · Score: 4, Informative

      This has been done before. There used to be a site called Six Degrees, which was a social network that showed your contacts at various distances.

      Which was swallowed by Orkut. Which was swallowed by Google.

      By the way, the original theory is that six degrees is the _maximum_ distance between any two living humans, not the average.

      --
      It is dangerous to be right when the government is wrong.
    7. Re:Travelling Salesman by Helios1182 · · Score: 1

      The fact that it is undirected and unweighted makes it even faster -- sub O(n^3) by at least one or more log factors depending on the density of the grpah. The shear size of the graph would make for a fun implementation, but it is entirely doable.

    8. Re:Travelling Salesman by ZombieBraintrust · · Score: 1

      Ahh, I remembered the problem wrong. I should read my own links lol. To make it a traveling salemen problem you could do the following. Assuming everyone who is friends with someone on your friends list will accept a friend request. What is the shortest amount of friend requests such that you would become friends with a set of people on Facebook.

    9. Re:Travelling Salesman by ZombieBraintrust · · Score: 1

      Even that is not the same because with the traveling salemen your options for the next step is smaller with each move. Where as this your options for friend request would grow with each request. Not the same at all.

    10. Re:Travelling Salesman by Anonymous Coward · · Score: 0

      I wrote an algorithm which does this for Wikipedia pages. The easiest (least computational) way is to use a bi-directional search and alternate between the start and end halves, evaluating the most recent layer for either side when looking for matches.

    11. Re:Travelling Salesman by SecurityGuy · · Score: 2

      By the way, the original theory is that six degrees is the _maximum_ distance between any two living humans, not the average.

      If so, that's trivial to disprove. There are about 100 uncontacted tribes of humans in the world. Choose one. Find the shortest path to yourself. There is no path.

    12. Re:Travelling Salesman by dotancohen · · Score: 1

      By the way, the original theory is that six degrees is the _maximum_ distance between any two living humans, not the average.

      If so, that's trivial to disprove. There are about 100 uncontacted tribes of humans in the world. Choose one. Find the shortest path to yourself. There is no path.

      Fair enough. Limited to humans in any particular cloud of contact, the stated theory is that the longest distance is six jumps.

      There also exist small communities in rural Russia who don't yet know that the October Revolution has ended, by the way.

      --
      It is dangerous to be right when the government is wrong.
    13. Re:Travelling Salesman by RussellSHarris · · Score: 1

      There also exist small communities in rural Russia who don't yet know that the October Revolution has ended, by the way.

      Why, don't they have calendars?

    14. Re:Travelling Salesman by blair1q · · Score: 1

      By making you do the computation.

      Note that they aren't looking at their extensive database and determining the graph, they're asking you to send messages to friends to see how they propagate.

      Massively parallel computation on a fuzzy, slow, balky system of human processors using a lossy communications scheme (anyone with 130 friends and any sort of IRL activities is not going to be able read everything that comes up on their feed every day).

    15. Re:Travelling Salesman by Overzeetop · · Score: 2

      On the contrary. If you know the tribe exists, then somebody in the civilized world knows somebody in the tribe. The tribe contact likely knows everyone in the tribe. The civilized contact has a good chance of being a research scientist, and has a very large number of contacts. Since the civilized person to any tribe member is a maximum of 2 degrees, then the researched need only be connected to everyone else via 4 degrees, which may not be out of the realm of possibility given that most well-heeled researchers will have direct contacts in multiple, if not all, continents.

      --
      Is it just my observation, or are there way too many stupid people in the world?
    16. Re:Travelling Salesman by SecurityTheatre · · Score: 1

      I think the hypothsis included the disclaimer that it would probably not apply to some tiny fraction of people. Something on the order of one in a million will not be within the 6-degrees.

      However, many of these tribes have had people leave, many have also had researchers visit.

      Additionally, we're talking about a few hundred to at most a few thousand individuals, total. We are 7 billion, otherwise.

    17. Re:Travelling Salesman by dotancohen · · Score: 1

      They don't even have toilets. A family introduced to modern Russian society from one such village all died due to disease within ten years, one girl survives until today.

      --
      It is dangerous to be right when the government is wrong.
  8. Facebook by mfh · · Score: 1

    Facebook doesn't know anything about me. I have subscribed there and posted there for a long time.

    They sell the information they have collected on me to other companies and they make a tidy profit for it, but the funny thing is that what they are selling has nothing to do with me. It won't help someone market better to me. It won't help someone convince me to buy something.

    The reason this kind of thing doesn't work is pretty easy. I'm the kind of person that makes purchasing decisions based on the actual products or services and my perception of them, along with my decision of whether to trust them. Anyone working with Facebook I automatically distrust. I never trusted Yahoo to begin with, especially when they had the overgrown mess of a website back when Google was starting its journey.

    So it really doesn't surprise me that Facebook has partnered with Yahoo, but to be honest I couldn't give a shit about it.

    This is just ivy league idiots passing money around. There is nothing more going on here.

    --
    The dangers of knowledge trigger emotional distress in human beings.
    1. Re:Facebook by Anonymous Coward · · Score: 0

      pls sir, will u suck my penis? ur big post made my peen hard

    2. Re:Facebook by sakdoctor · · Score: 1

      Isn't the theory that by amassing giga-libraries-of-congress, of personal data you'll get relevant and personalized ads?
      Nope, turns out they are just as irrelevant as the least targeted ads, such as TV.

    3. Re:Facebook by jeffmeden · · Score: 2

      Facebook doesn't know anything about me. I have subscribed there and posted there for a long time.

      They sell the information they have collected on me to other companies and they make a tidy profit for it, but the funny thing is that what they are selling has nothing to do with me. It won't help someone market better to me. It won't help someone convince me to buy something.

      The reason this kind of thing doesn't work is pretty easy. I'm the kind of person that makes purchasing decisions based on the actual products or services and my perception of them, along with my decision of whether to trust them. Anyone working with Facebook I automatically distrust. I never trusted Yahoo to begin with, especially when they had the overgrown mess of a website back when Google was starting its journey.

      So it really doesn't surprise me that Facebook has partnered with Yahoo, but to be honest I couldn't give a shit about it.

      This is just ivy league idiots passing money around. There is nothing more going on here.

      How do you know for sure that your purchasing decisions are made by *intentional* perceptions of products, and not by the subtly controlled environment you subject yourself to when engaging in things like Facebook? Heck, by your own admission all I would have to do (as a marketer) is somehow dis-align my brand with Facebook and I will be excluded from your circle of distrust. After that it's only a matter of time before that distinction creeps into a purchase decision. People put so much more unconscious thought into purchases (and other things) than they tend to admit, and often its the ones going around saying "no that's not going to influence my purchases!" that are the most susceptible.

    4. Re:Facebook by Anonymous Coward · · Score: 0

      How do you know for sure that your purchasing decisions are made by *intentional* perceptions of products, and not by the subtly controlled environment you subject yourself to when engaging in things like Facebook?

      Because if he's anything like me, I take my time and actually shop. I look at Consumer Reports, ratings on websites (everything but the 5 star reviews - they're all shiils and people who know no better) and talk to people who do know better.

      See, I'm a cynic. If it's online I automatically have doubt about it and do my own investigations to the best of my ability; which is why I never signed up for Facebook to begin with.

    5. Re:Facebook by vlm · · Score: 1

      I'm the kind of person that makes purchasing decisions based on the actual products or services and my perception of them, along with my decision of whether to trust them.

      Your mistake is missing that you only make decisions on the products you know about, or where you can burn thru the confuseopoly to get real info.

      Thru aggressive narrowcasting, its possible to avoid entire swaths of not just pop culture, but even science and technology. Ye olden glory days of everyone watching the same TV broadcast and reading the same best seller are long gone.

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    6. Re:Facebook by jeffmeden · · Score: 1

      Good for you for being an informed consumer, but if you are anything like a normal person you generally value your purchases based on some degree of personal satisfaction, and not based on the thought that everyone *else* is happy with it. In this regard, all too often people make the wrong choice at a rate proportionate with how much time they invested in "research" of said purchase, which runs contrary to expectations but it is nevertheless the outcome of many consumer behavior studies. It would seem that it is very easy to "over think" a purchase and weight the decision with the wrong set of criteria. Given that, it is also very easy to be influenced by subtle, almost unnoticeable factors that ultimately can swing a purchasing decision one direction or another. Unless you rely on a self-programmed computer, free of any human influence for all of your decisions, then chances are you are influenced by these things too.

    7. Re:Facebook by SecurityTheatre · · Score: 1

      You know, a number of double blind studies have shown that advertising affects everyone, including those who rate themselves most highly objective. Certainly, perhaps at a lower level, but I don't think YOU are that special. :-)

  9. You rarely need six by elrous0 · · Score: 1

    My friend and I used to play this "connections" game, mostly with movie stars, and always with funny variations like "Connect Tim Burton to Orson Welles, using the movie The Cannonball Run." We almost never needed six degrees to make even the most obscure connections. My favorite example was one we did when Rob Morrow played John Wilkes Booth in a miniseries: "Connect Rob Morrow to John Wilkes Booth." Seems hard no? Not really:

    John Wilkes Booth's brother Junius was married to Agnes Booth, who was in the Palmer Theatre Company with Maurice Barrymore, who was the g-grandfather of Drew Barrymore, who starred with Ben Stiller in Duplex, who was on The Ben Stiller Show with Rob Morrow.

    --
    SJW: Someone who has run out of real oppression, and has to fake it.
    1. Re:You rarely need six by ginbot462 · · Score: 1

      I love using Orson Welles with the Transformer movie. (With Leonard Nemoy, Robert Stack, Eric Idle, et al)

      --
      Atlas Shrugged : Thematic Story :: Battlefield Earth : Organized Religion
  10. "average of 130 friends" by Anonymous Coward · · Score: 1

    Do normal people really have 130 friends?

    I don't use facebook, don't even have an account, but just counting the people I'd call friends i can think of 15, maybe 20 depending on how you count. If you want to count acquaintances I probably get to 250, but *friends*? I'd say 15.

    I guess the facebook generation is a lot more social.

    1. Re:"average of 130 friends" by nedlohs · · Score: 2

      facebook "friend" doesn't mean the same as the usual word frield. It includes friends, family, acquaintances, and people who were friends a decade ago.
       

    2. Re:"average of 130 friends" by cs668 · · Score: 1

      People always seem to call acquaintances friends. A friend is someone who will drive 1200 miles overnight to bail you out of a jail in Mississippi, or give you the pillow treatment when your family won't let them disconnect the feeding tube. So, I might have 200 FB friends but, in the end really only 3 or 4 that would pass the friendship test in the previous sentence ;-)

    3. Re:"average of 130 friends" by vlm · · Score: 2

      Before I deleted my FB account a year or so ago, I had:

      A kid I sat next to in study hall in my sophomore year of high school in the 90s.

      A kid who ate at "my" lunch table in 8th grade in the 80s.

      A girl from college who supposedly lived in my dorm in the 90s, although I don't remember her at all.

      A salesguy from a satellite office who I met once at HQ back in 2002, but I couldn't not friend him without offending a real local friend

      A recruiter who never got me a job, but I didn't want to offend her by defriending because someday, in the distant future, she might actually get me a job. Well, probably not, but its kind of like playing the lotto for free.

      And finally I believe I had my wife's lifelong dentist friended. Don't remember for sure about that one.

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    4. Re:"average of 130 friends" by Dog-Cow · · Score: 1

      A "friend" who is offended by you not friending a Facebook profile is not really a friend.

    5. Re:"average of 130 friends" by vlueboy · · Score: 1

      It's easier to visualize if you think how many address book contacts we spread out through all semi-active and fully active hotmail, gmail and yahoo accounts.

      Since the mainstream only has one Facebook account t hold all potential friendships, now you merge 25 contacts here with 50 there and 10 there, it adds up. Count all those low-maintenance friendships and the fact that Facebook is almost a rolodex to a level that your ephimeral SIM card cannot provide when you switch companies, and 200 starts to make sense. My mother went from 60 friends about 6 months in, knowing nothing about PC's, to 200 in 12 more months, with a light pruning regime.

    6. Re:"average of 130 friends" by vlueboy · · Score: 1

      A "friend" who is offended by you not friending a Facebook profile is not really a friend.

      If they were before, they will probably choose not to, anymore
      But knowing human nature, you're a little too hopeful. The whole reason we all join any group is peer pressure. Peer pressure's power is that we prefer to avoid being "offensive" to the askers, and the more people are in, the more we fear well offend by staying outside.

    7. Re:"average of 130 friends" by Joey+Vegetables · · Score: 1

      Heck. I've got a LOT of people who would give me the "pillow treatment" without me even having to be terminally ill!

  11. Graph theory by Anonymous Coward · · Score: 0

    I always thought that this was a result which was known through graph theory of what happens when you get a large number of nodes each with an arbitrary number of unique connections between them, that it would always tend towards the case that you got an average of no more than six degrees of separation for a sufficiently large network. You wouldn't need to test the theory by experiment since it could be demonstrated mathemetically.

    Having said that, supposed you had 100bn people in the world. You'd have to each have an awful lot of friends for it to be applicable then, ergo the same might be true of the much small number on Facebook. Maybe I shouldn't post comments when I don't know what I'm talking about.

    1. Re:Graph theory by snorb · · Score: 2

      Yes, if you have 1,000,000 nodes and there are at least 499,994,500,020 edges out of a possible 499,999,500,000 (ie. a bit more than 99.999% of them), then yes you can conclude the diameter of the graph is no more than 6. But no, simply counting the number of edges is not particularly useful. You need to make further assumptions about the graph to get a useful bound.

    2. Re:Graph theory by DavidShor · · Score: 2
      "I always thought that this was a result which was known through graph theory of what happens when you get a large number of nodes each with an arbitrary number of unique connections between them, that it would always tend towards the case that you got an average of no more than six degrees of separation for a sufficiently large network."

      Not really, no. It's about scale-free networks (Networks that have preferential attachment, IE, people with tons of friends are more likely to get new friends than people with no friends. Their degree distribution, IE, the number of friends, is power-law distributed as opposed to exponential distributions, which come from friendship being totally random). You can model social networks fairly well as scale-free networks empirically. Roughly speaking, the average distance between two random notes is proportional to the log of the log of the number of nodes.

    3. Re:Graph theory by Hatta · · Score: 1

      There's nothing special about the number six. Larger or less well connected networks will require more steps to traverse, and vice versa for smaller or more highly connected networks.

      However that number increases as the logarithm of the number of nodes in the network, so you need a much larger network to get much past 6. If each person has 14 friends, then you will find 6^14=78bn people within 6 steps of you. If each person has 15 friends, you find 470bn friends within 6 steps. So you can see that the size of the network doesn't matter as much as the connectivity.

      --
      Give me Classic Slashdot or give me death!
    4. Re:Graph theory by biodata · · Score: 1

      Do you know if it's known whether the FB graph is fully connected?

      --
      Korma: Good
    5. Re:Graph theory by DavidShor · · Score: 1

      It's not, there are people with no friends or pairs. But I've looked at some data samples from facebook, I'd be shocked if the giant component didn't contain more than 98% of non-singleton notes. I'd be very surprised if the largest "Non-giant component" has more than 10 people.

  12. I know everyone by ciderbrew · · Score: 1

    In real life as soon as you know a person who has met the Queen or the Pope, you then know a lot of people via them. How strong does this connection need to be?

  13. privacy of connections by lkcl · · Score: 2

    did facebook and yahoo ask permission of all these users before rifling through their profiles?

    1. Re:privacy of connections by ciderbrew · · Score: 1

      HA HA HAHHAH AHAHAHAHahha HahhaH Hahahah HAHAHaha hHAHHA.

    2. Re:privacy of connections by blair1q · · Score: 1

      Did you ask their permission to question their permission?

    3. Re:privacy of connections by encrufted · · Score: 1

      Why should they? The data was provided to them voluntarily. If you don't want something public, don't give it to an untrusted entity.

  14. key gateways by Anonymous Coward · · Score: 0

    This makes migrants key gateway persons. Say you are originally from Iran and live in the USA, but have facebook friends in both countries, you are the gateway between the USA and Iran. A somewhat important thing, since most
    migrants are often deemed "not that important" which affects their social and economic status. Finding key gateway persons can lead knowledge of a diaspora and can bring people together, like the 6 degrees. These key gateways are often highly vulnerable to outside factors once identified. I do hope nothing bad comes from this.

  15. What is this Facebook thing? by Skyshroudelf · · Score: 1

    I think these new technologies will never succeed... I will wait till it is stable and secure, yeah that's the ticket.

  16. Seems kind of dumb. by wcrowe · · Score: 1

    Using Facebook to test this theory seems kind of dumb. I'm Facebook friends with the Ecumenical Patriarch of Constantinople, so it would appear that there is one degree of separation between me and his All Holiness. And because Ecumenical Patriarch Bartholomew is acquainted with Pope Benedict XVI, then there are only two degrees of separation between me and the Pope -- or between me and any number of world leaders or other important people. But, of course, I have never met the Ecumenical Patriarch, so you can't really consider that much of a connection.

    --
    Proverbs 21:19
    1. Re:Seems kind of dumb. by Chuq · · Score: 1

      "Using Facebook to test this theory seems kind of dumb."

      "But, of course, I have never met the Ecumenical Patriarch, so you can't really consider that much of a connection."

      If people used Facebook properly - such as only adding friends if they are actually friends - it wouldn't seem so dumb.

      --
      - Chuq
  17. That's exactly the original purpose of Orkut by vivaoporto · · Score: 1

    That's exactly the original purpose of Orkut, the (almost defunct) original Google social network site. Orkut Buyukkokten (the Google employee that came with the idea on his 20% paid "free time") was the "Kevin Bacon" and the breadcrumbs of the site used to show the smallest paths between you and Orkut.

    It was a fun experiment in the beginning because not only the path between you and Orkut was drawn, but the path between you and anyone you looked at the profile.

    But then, when the first batch of geeks (who else, considering Orkut invited his geek friends of Stanford and Google first) started inviting the first batches of "civilians", in a couple of generations the experiment was not viable anymore because of the sheer amount of processing power needed to calculate the paths, the expansion of the network and the commercialization of the content.

    Fun days were those when a social network by geeks, for geeks thrived (with lasers!).

    1. Re:That's exactly the original purpose of Orkut by 787style · · Score: 1

      There are markets other than America. Orkut is huge in Brazil and India, over 60 million users and one of the 100 most trafficked sites in the world.

  18. The "friends" fallacy by petes_PoV · · Score: 1

    I understand your idea, but it mistakes meeting someone with knowing them. Just like Facebook males the mistake of calling people "friends" just because they have something (imaginary or real) in common. While you might think you "know" the queen, just because you've met her there's no reciprocity in the relationship - she does not know you. So the premise falls down.

    --
    politicians are like babies' nappies: they should both be changed regularly and for the same reasons
    1. Re:The "friends" fallacy by ciderbrew · · Score: 1

      I thought that was about it. The Facebook data doesn't prove a thing if they take into account all those people who have 500+ friends.
      Just to point out I've never met the Queen and have I never "known" her.
      the Pope £uc$ed me once.

  19. The flaw with the notion by Anonymous Coward · · Score: 0

    The flaw is, of course, that people *not* on facebook probably have a systematically higher degree of separation, so the test systematically produces numbers that are too small.

  20. Cue the lawsuits in 3...2... by geekmux · · Score: 1

    (potential employer, after reviewing the social "map" of said candidate and seeing they're only 2 "degrees" away from a convicted sex molester...) "Well, we would like to hire you, but it seems that after further review, we don't feel you're quite a solid fit for the position."

    Yeah, tell me that kind of abuse ain't gonna start happening...

    1. Re:Cue the lawsuits in 3...2... by vlueboy · · Score: 1

      What an interesting game. The only winning move is not to play.

  21. I thought... by Gripp · · Score: 1

    I thought that the 6-degrees was a MAXIMUM, not an "average" as the article suggests. if we step it back to an "average" value then it isn't really very impressive.

    further, maybe they should employ someone with a brain (you know, those people you pay as little as possible) to do the actual webcrawl + math to determine this more thoroughly than having laymen guess at paths to random people...

  22. Most Connected by ginbot462 · · Score: 1

    I haven't seen anybody link to this site yet. To see who is the center of the hollywood universe:
    http://oracleofbacon.org/center_list.php

    --
    Atlas Shrugged : Thematic Story :: Battlefield Earth : Organized Religion
  23. Kevin Bacon? by cyberchondriac · · Score: 2

    I guess I'm 2 steps from Kevin Bacon; I fixed his dad's VCR while working at a shop in Ardmore, PA, back in '91. (it was more interesting however that on the same job, I met Patti LaBelle, and talked to her in her own house - very nice woman)

    --

    Look back up at my post, now look back down, you're on the Internet. Now look back up. I'm a signature.
    1. Re:Kevin Bacon? by SoTerrified · · Score: 1

      I have a personal Kevin Bacon number of 4. I worked on a student film with a friend who later did costuming on a movie featuring Dan Aykroyd. Aykroyd was in 'Chaplin' with Laurel Whitsett, and Laurel Whitsett was in 'Super' with Kevin Bacon.

    2. Re:Kevin Bacon? by GodfatherofSoul · · Score: 1

      I had bacon-wrapped hot peppers this weekend, so I got you beat.

      --
      I swear to God...I swear to God! That is NOT how you treat your human!
    3. Re:Kevin Bacon? by Randwulf · · Score: 1

      I'm at 3 steps. A friend of my brother used to babysit Kevin Bacon's children.

    4. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      I was friends with Monica Lewinsky's brother in college (Carnegie Mellon, 1998). He definitely knows his sister. She definitely knows Bill Clinton. I am awesome!

    5. Re:Kevin Bacon? by RussellSHarris · · Score: 1

      She definitely knows Bill Clinton.

      That depends on what your definition of "know" is. Technically, she only gave him a blowjob, which wouldn't qualify for definition #3.

    6. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      And I think it comes down to a question of what a connection is. I've met Henry Rollins and exchanged letters with him for a bit. Henry had a song in a Kevin Bacon film. Does that mean I'm 2 degrees from Kevin Bacon?

    7. Re:Kevin Bacon? by Anonymous Coward · · Score: 2, Interesting

      That puts all of us at 3 step max because we visit the same website as you. That's about as valid as Facebook's idea of what Facebook friends are.

    8. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      And now that we've talked to you (does that make us ``friends'' in the social networking sense?), we're all 3 degrees away from Kevin!

    9. Re:Kevin Bacon? by sorak · · Score: 1

      She definitely knows Bill Clinton.

      That depends on what your definition of "know" is. Technically, she only gave him a blowjob, which wouldn't qualify for definition #3.

      But she did know a cigar that would give him a solid 4.

    10. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      "I'll take 'Job Skills That Are in High Demand' for $200, Alex."

    11. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      But Bill Clinton also knew the cigar? Ew... I don't even want to think about that.

    12. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      You need, by definition, be in a movie with a person with Bacon number k, to get Bacon number k+1. (Bacon has 0 as Bacon-number).

      I have Erdös-number 4, since I've written a mathematical article together with a person with Erdös number 3.
      But I have not been in a movie yet. :/

    13. Re:Kevin Bacon? by blair1q · · Score: 1

      Doesn't count, unless you were filmed doing it, presuming Bacon's dad is in home movies with his son.

    14. Re:Kevin Bacon? by Darinbob · · Score: 1

      No one has been able to answer this question for me.

      What is Kevin Bacon's Erdös number?

    15. Re:Kevin Bacon? by cyberchondriac · · Score: 1

      lol! That's not a whole lot less than what I made each week, too..

      --

      Look back up at my post, now look back down, you're on the Internet. Now look back up. I'm a signature.
    16. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      ... and so now I'm *three* steps from Kevin Bacon! W00t!! :)

    17. Re:Kevin Bacon? by Anonymous Coward · · Score: 0

      I'm also 2 steps from Bacon, but I'll take my hug from an attractive young woman who's in a movie with him over your fixing his old man's VCR. :p

  24. did anyone read the article? by jarkus4 · · Score: 3, Interesting

    Everyone here is bitching about privacy breach, algorithm complexity etc. Actually it has nothing to do with this experiment. From TFA
    "Anyone with a Facebook account can participate to verify if everyone is on average approximately six steps away from any other person on Earth. You’ll be asked to select one of your Facebook friends whom you believe is most likely to know the “target person” that has been assigned to you. A message will then be sent from friend to friend until you get it to the “target person.” The goal is to do this in as few steps as possible. "

    Basically they are just repeating the old mail experiment, but with a new way of passing messages
    - unless you (or one of your friends) participates nothing happens to your privacy
    - no computer algorithm is involved
    - no problem with celebrity profiles linking thousands of people that now nothing about each other

    1. Re:did anyone read the article? by mcmonkey · · Score: 1

      Everyone here is bitching about privacy breach, algorithm complexity etc. Actually it has nothing to do with this experiment. From TFA
      "Anyone with a Facebook account can participate to verify if everyone is on average approximately six steps away from any other person on Earth. You’ll be asked to select one of your Facebook friends whom you believe is most likely to know the “target person” that has been assigned to you. A message will then be sent from friend to friend until you get it to the “target person.” The goal is to do this in as few steps as possible. "

      Basically they are just repeating the old mail experiment, but with a new way of passing messages
      - unless you (or one of your friends) participates nothing happens to your privacy
      - no computer algorithm is involved
      - no problem with celebrity profiles linking thousands of people that now nothing about each other

      You're right about the privacy angle, but not about the algorithm.

      It's still an algorithm, just with people making choices instead of the computer.

    2. Re:did anyone read the article? by tokul · · Score: 1

      Anyone with a Facebook account

      So it is closer to 7 steps and more as some don't have facebook account. Even if I go complete mad and get FB account, only one person might link to me.
      Facebook friends are not real friends.

    3. Re:did anyone read the article? by Anonymous Coward · · Score: 0

      yah, its foolish to jump to the "privacy breach conclusion". Privacy is Facebook and Yahoo's primary focus. It ridiculous to think they will collect any data on participants and their connections with "targets" in order to drive ad revenue.. that is SO off their collective radar..

  25. Djikstra's Algorithm by GodfatherofSoul · · Score: 0

    I took a Data Structures class this summer and we solved a similar homework problem to this using Djikstra's and min heaps. Of course, this is a pretty irrelevant question since your Facebook friends are just any random yahoo you clicked "Confirm" with.

    --
    I swear to God...I swear to God! That is NOT how you treat your human!
    1. Re:Djikstra's Algorithm by ginbot462 · · Score: 1

      If you would to dig deeper, look here:

      http://oracleofbacon.org/how.php

      Though, my guess is they didn't implement their own heap and just used the a language provided one (not to say learning how to make one isn't worth while).

      --
      Atlas Shrugged : Thematic Story :: Battlefield Earth : Organized Religion
    2. Re:Djikstra's Algorithm by Anonymous Coward · · Score: 0

      any random yahoo

      i see what you did there

  26. This study means that I need to kill by aglider · · Score: 1

    not less than 5 people in order to push Berlusconi away from me?
    I need a longer, much longer separation from him as I have two teen daughters.

    --
    Sent as ripples into the electromagnetic field. No single photon has been harmed in the process.
  27. Six? by aglider · · Score: 1

    I think this's a typo. It'd read "sex". Connection of sex sounds much better.

    --
    Sent as ripples into the electromagnetic field. No single photon has been harmed in the process.
  28. MOD PARENT UP! by michaelwigle · · Score: 2

    I actually signed up for it because I'm like that and it turns out you have to provide the information you want to share and you have to send a message to a Facebook friend you think might get you closer to the end target. You do have to let the Yahoo app have access to your basic information on Facebook to sign up for it. If you want to be a target you have to let the app have more access to your information and provide some additional details. So basically, I doubt this will go anywhere specifically because it's not automatic or in the background. It takes actual intentional steps on the part of the participants.

  29. Erdos-Bacon by DragonWriter · · Score: 1

    The real challenge is getting a high number.

    No, the real challenge is getting a particularly low (or particulary high, but defined) Erdos-Bacon number.

  30. technically this applied to acting credits by peter303 · · Score: 1

    No separation = same movie.
    One degree was with someone who acted with him, etc.

    I supposed IMDB could be topologized to measure two actors' separation.

    1. Re:technically this applied to acting credits by mcmonkey · · Score: 1

      No separation = You are Kevin Bacon
      One degree = in a movie with Kevin Bacon

      A guy from my high school drama club was one of the muggers in Crocodile Dundee ("that's not a knife"). If plays are included in addition to movies, that gets me a Bacon number of 6 or 7.

      If you don't restrict connections to performances, Larry David's daughter was my R.A. in college. From there, Larry David was in Seinfeld with the guy who played Neuman, who was in Jurassic Park with Jeff Goldblum, and eventually someone was in something with Kevin Bacon.

  31. Does anyone else by Anonymous Coward · · Score: 0

    Remember sixdegrees.com? It was one of the first chatrooms and was kinda based on the 6d separation idea.

  32. some social networks do this already by peter303 · · Score: 1

    They tell you whether you have any connections in common up to a certain degree.

  33. Introductions! by Sir+Realist · · Score: 1

    Someone should analyze the graph and find the two people to introduce who will reduce the average path length of everyone else by the greatest amount...

    And then kill one of them, to preserve the Bacon Throne.

  34. Hubs... by ccguy · · Score: 1

    Problem here is that actors, singers, companies, etc, will act as "hubs" - since they have hundreds of thousands of "friends". So probably it's not 6 degrees but 3 or 4 here.

  35. Wikipedia by Dunbal · · Score: 1

    Since Godwin's law will not be contradicted, I have to say that Wikipedia has proved rather successfully that you are never more than 4 clicks away from Hitler.

    --
    Seven puppies were harmed during the making of this post.
    1. Re:Wikipedia by stubob · · Score: 1

      According to the Oracle of Bacon, Hitler has a Bacon number of 4, so you must be correct.

      --
      Planning to be moderated ± 1: Bad Pun.
  36. sixdegrees.com by pinballer · · Score: 1

    Does anyone else remember them? http://en.wikipedia.org/wiki/SixDegrees.com

  37. Millgram experiment on Obedience to Authority by bd580slashdot · · Score: 1

    OT I know, but this is the same guy who did this http://cnr.berkeley.edu/ucce50/ag-labor/7article/article35.htm which together with the Stanford Prison experiment http://www.prisonexp.org/ shed some light on the darker side of human tendencies.

  38. This is how it works by Okian+Warrior · · Score: 1

    This is how it works.

    Suppose everyone knows roughly 50 other people. If you add together your family (all of them - even distant cousins), the people you know at work, church, through your hobbies, your neighbors, your mailman and so on... the total is around 50.

    Every one of these 50 people knows 50 *other* people, and every one of those 2500 people again knows 50 *other* people, so that the circle expands exponentially in powers of 50.

    Of course, this isn't a complete description since at every stage there is an increasing probability that people in the next stage are already accounted for in an earlier stage, but this is the essential flavor.

    The world population is 6.7 billion. The 6th root of that number is about 44. So discounting the probability of overlap as mentioned, everyone would only need to know 44 people to link everyone in the world to within 6 "degrees of Kevin Bacon".

  39. *Average* of six degrees? by MikeUW · · Score: 1

    I always thought that the *maximum* was six degrees of separation between virtually everyone. Thus, an average would lower than six degrees...and any instances of more than six degrees would be in the minority, or outliers that may simply be because not everyone is accounted for.

    Of course, this also depends on what your criteria for each degree of separation. Do you have to be just facebook friends, or should you actually have had some real physical contact (i.e., being the same room together), or verbal exchange with someone, or should there actually be a meaningful relationship that associates two people along each degree of separation? We've already seen articles in /. which that demonstrated that many people add friends to their lists without really knowing who they are or ever even interacting with them. To me, that doesn't count. Also...what about famous/popular people who have 'friends' that are really just 'fans'...does that get counted?

    Using the methodology described, it's up to each person to decide who out of their list of friends is the next link is to a given 'target'...but that doesn't confirm that their association with the selected 'friend' is actually a valid social linkage (e.g., someone may pick the next linkage based on popularity, but without actually having any social ties with that person). You can make some assumptions to overcome this, and the results will be interesting...but I don't think this will be conclusive if conducted in the manner described.

  40. Inefficient, outdated experiment set-up by Arancaytar · · Score: 1

    You’ll be asked to select one of your Facebook friends whom you believe is most likely to know the “target person” that has been assigned to you. A message will then be sent from friend to friend until you get it to the “target person.” The goal is to do this in as few steps as possible.

    One of the crucial points of the Small World thing is that you can't predict your indirect acquaintances (or even the regions/groups they are in) more than one or at most two degrees away. We don't have some kind of global routing table in our head. I have dozens of friends in the US. It's quite possible that one of them is related to a former classmate of a relative of a former colleague of someone who knows Obama. Even assuming this is the case, I have no way of guessing who that would be.

    Instead of relying on people's random guesses, it would be far more sound to throw computing power at the problem. The pass-the-parcel experiment is traditionally used because this is not possible in practice. If only Yahoo had a lot of computers dedicated to analyzing link networks and Facebook had a huge database of interpersonal relationships...

  41. Misconception of concept + misapplication of same by mat+catastrophe · · Score: 1

    First off, the entire notion of "six degrees of separation" is based on a study that was later partially discredited. Milgram's study was flawed in a number of ways, later described by Judith Kleinfeld and others.

    Secondly, even assuming that the "six degrees" effect was accurate, using facebook is not the same as the initial experiment at all. Facebook is a radically different method of connecting people.

    It's interesting that Duncan Watts is mentioned in the article but that he isn't allowed to actually expound on any of these issues. I mean, it isn't like he wrote a book on this topic or anything.

    This is pop culture science posing as something else entirely.

    --
    sig not found
  42. Worthless by scup · · Score: 1

    The study would be worthless. A large percentage of the "friendships" on Facebook are based on common game play.

  43. This is so stupid by Anonymous Coward · · Score: 0

    This is so retarded, most of anyone's friends on facebook are NOT friends in real life, assuming most slashdotters still know what real life is?

  44. Why all the hassle? by Anonymous Coward · · Score: 0

    I checked the site, and it seems that, if you participate, they give you a "target" person, and you forward a message for the target to every one of your friends. And then *they* forward that to *their* friends, until it eventually gets to the target.

    What I don't get is: why do they depend upon us unreliable humans forwarding all of this crap? Why can't Facebook just analyse everybody's friend list?

    1. Re:Why all the hassle? by Chuq · · Score: 1

      Because of the huge privacy concerns?

      --
      - Chuq
  45. Hello, Selection Bias by jonadab · · Score: 1

    The study is being done only using people who are into social networking. There are several categories of isolating factors that doesn't control for properly.

    You also need to include in your study, in proportional quantities to the whole world's population, people who think Facebook is stupid, not to mention people who don't have access to the internet, people who live in remote rural areas and have never traveled more than a few miles from home, and people who speak only one language and it's *not* a major lingua franca like English.

    Selecting your sample population in a way that inherently excludes these groups of people guarantees that your results will be a severe misrepresentation of the average case.

    --
    Cut that out, or I will ship you to Norilsk in a box.
  46. My Bacon Number is 3. by leftie · · Score: 1

    I was in high school plays with a young woman who went on to do well on Broadway. She's been nominated for a Tony. Veanne Cox now has like 40+ credits on IMDB.
    Veanne was the hardest working person I knew. She was taking 2 different forms of dance while she was in High School, ballet before school, jazz dance after school and show practices.

  47. D B Cooper and friends by Anonymous Coward · · Score: 0

    Where do underground terrorist fit in, and all those technophobes that live in caves and where aluminum foil in their baseball caps?

  48. what counts? by Anonymous Coward · · Score: 0

    I once sat in a chair previously owned by Agnes Moorhead. Does that put me two seats from Sabrina the teenage witch?

  49. Is it still only 6 degrees? by Oswald+McWeany · · Score: 1

    They've been saying 6 degrees of seperation since the earth had 5bill people (probably before that). Surely with 2 billion more people on the planet now it has to eventually go up to 7 degrees (although, I know it will be exponential how population would need to go up per degree).

    --
    "That's the way to do it" - Punch
    1. Re:Is it still only 6 degrees? by erice · · Score: 1

      They've been saying 6 degrees of seperation since the earth had 5bill people (probably before that). Surely with 2 billion more people on the planet now it has to eventually go up to 7 degrees (although, I know it will be exponential how population would need to go up per degree).

      Not necessarily. International communciations and travel and increased substantially since the population was 5 Billion. China and India are quite well connected now. They didn't use to be.

  50. Hilton Number ? by nukenerd · · Score: 1

    The elephant in the room here is how connected people are sexually.

    In other words, how many shaggings are we away from Paris Hilton?

    Oh, hang on, we are geeks here ... so does that make it infinity?

  51. Kevin who eats Bacon by zildgulf · · Score: 1

    I am sure everyone in world is six steps away from knowing some named Kevin (or some language variant of that name meaning "handsome" or "beloved") that eats Bacon or something that fits the definition of Bacon except from another animal.

    Is that close?

  52. Tribes are not contact-free by gr8_phk · · Score: 1

    If so, that's trivial to disprove. There are about 100 uncontacted tribes of humans in the world. Choose one. Find the shortest path to yourself. There is no path.

    Dude, just because the tribe is not in contact with people from our "modern" world, they are most certainly in contact with people from other tribes and they in turn are in contact with other tribes. If not, then inbreeding would have finished them off. So the tribes are connected and at some point there is a link between tribal peoples and non-tribal folks. So when you say "there is no path" I believe you are incorrect. It's probably more than 6 degrees, but there is likely to be a path.

  53. And now everyone is by Anonymous Coward · · Score: 0

    So I've found that I'm within six steps of Kevin Spacey. Either exactly six if you keep it to working relationships, or 4 if you allow through a friends friend. It's apparently inescapable.

  54. Dunbar's number by naroom · · Score: 1

    TFS: " each of whom have an average of 130 friends...

    CC.

    Actually, 130 is just right.

    Dunbar's Number: Dunbar's number is suggested to be a theoretical cognitive limit to the number of people with whom one can maintain stable social relationships. These are relationships in which an individual knows who each person is, and how each person relates to every other person.[1] Proponents assert that numbers larger than this generally require more restrictive rules, laws, and enforced norms to maintain a stable, cohesive group. No precise value has been proposed for Dunbar's number. It has been proposed to lie between 100 and 230, with a commonly used value of 150.

    1. Re:Dunbar's number by foobsr · · Score: 1

      Quote: "In dispersed societies, individuals will meet less often and will thus be less familiar with each, so group sizes should be smaller in consequence." (ibid)

      Not to mention that this Dunbar accepts a confidence interval 100-230, but at the same time is sure about a 42% time budget. Nothing but scientific self-marketing, IMHO.

      CC.

      --
      TaijiQuan (Huang, 5 loosenings)
  55. Just six DIGITS of separation ... by Anonymous Coward · · Score: 0

    Between one dollar in the bank, and a million.

    If you divide a million dollars repeatedly into groups of ten, it takes just six steps to reach any particular greenback (or loonie, if you're in Canada, etc).

    Just a little perspective on this degrees of separation thing ... :)

  56. MOD PARENT DOWN! by knuthin · · Score: 1

    I actually signed up to tell you that I am sick of people "actually signing up" to talk about trivial things.

    --
    Some apps are WYSIWYG. Some others are WYSIWTF.
    1. Re:MOD PARENT DOWN! by michaelwigle · · Score: 1

      ~shrugs~ No problem. There are things others do that annoy me too. But I will say that most of my life is full of non-trivial things. Sometimes, I need to talk about something completely useless, pointless, and irrelevant (like a Yahoo/Facebook social experiment) to remind myself that not everything in life needs to be important. It's OK to do something whimsical once in awhile. I find that a little frivolity goes a long way in making me a more bearable and less wound-up person. So, there you have it. It takes all kinds I guess.