Slashdot Mirror


Anthropomorphism and Object Oriented Programming

An anonymous reader writes: We've all been warned about how anthropomorphizing animals and machines can lead us astray. But Edsger Dijkstra once cautioned (PDF) developers against thinking of their programs that way as well. "I think anthropomorphism is worst of all. I have now seen programs 'trying to do things,' 'wanting to do things,' 'believing things to be true,' 'knowing things' etc. Don't be so naive as to believe that this use of language is harmless. It invites the programmer to identify himself with the execution of the program and almost forces upon him the use of operational semantics." A new article fleshes out Dijkstra's statement, providing a good example of where an anthropomorphized analogy for Object Oriented Programming breaks down when you push it too far.

55 of 303 comments (clear)

  1. Strawman by Anonymous Coward · · Score: 5, Insightful

    Dijkstra spends time building an analogy, then explains how it's flawed, and uses that to argue against 'anthropomorphizing'.

    That's nice, and I certainly agree that the analogy can only go so far, but he was the one to build that analogy in the first place. This is not a valid argument against anthropomorphizing at all.
    I do agree with the conclusion that anthropomorphising is not a reason to call OOP better than procedural.
    ---
    "I don't know how many of you have ever met Dijkstra, but you probably know that arrogance in computer science is measured in nano-Dijkstras"

    1. Re:Strawman by FoxMcElroy · · Score: 2

      You seem to think Dijkstra wrote the article. He was just the one who made the first quote. The article was written by Loup Vaillant.

  2. Summarizing by ofranja · · Score: 5, Funny

    Object oriented programming, the "crystal healing therapy" of computer science.

    --
    EOF
    1. Re:Summarizing by NoNonAlphaCharsHere · · Score: 5, Funny

      Don't anthromorphize your objects. They don't like that.

    2. Re:Summarizing by cold+fjord · · Score: 2

      Some of them do. Not all of them fit your template.

      --
      much of left-wing thought is a kind of playing with fire by people who don't even know that fire is hot - George Orwell
    3. Re:Summarizing by gtall · · Score: 2

      Nah, OOP is fine in the right places, the crystal healing therapy is agile programming.

    4. Re:Summarizing by smittyoneeach · · Score: 2

      Nice, but seriously. Programming is about creativity. Managing large wads of people, e.g. the military, is about crushing creativity.

      --
      Get thee glass eyes, and, like a scurvy politician, seem to see things thou dost not.--King Lear
  3. Procedural vs OO by NoNonAlphaCharsHere · · Score: 5, Funny

    I used to have a procedural toaster which cooked the bread until it became toast. Then I upgraded to a much more elegant OO toaster, which simply sends a "toast yourself" message to the bread. Unfortunately, bagels don't have a self.toast() method, so i still have to have a backup procedural toaster to handle the older API.

    1. Re:Procedural vs OO by quenda · · Score: 4, Funny

      Hardware analogies are fraught with peril but ...
      the object-oriented toaster never burns bread, because the slices/bagels etc set their own cook time. You don't need to upgrade the toaster every time you get a new kind of bakery product to toast.

      And best of all, you never need to empty the crumb tray, because of the built-in garbage collection.

    2. Re:Procedural vs OO by NoNonAlphaCharsHere · · Score: 2

      By the same token, now you have to implement pie.toast() and cake.toast() and lots of other useless and irrelevant methods, even though you're never ever going to use them, simply because they extend the isBakeable() interface.

    3. Re:Procedural vs OO by kjots · · Score: 5, Insightful

      By the same token, now you have to implement pie.toast() and cake.toast() and lots of other useless and irrelevant methods, even though you're never ever going to use them, simply because they extend the isBakeable() interface.

      Unnecessary, since the IsBakeable interface provides a default implementation of the toast() method that throws an exception if you attempt to toast something that is not toastable.

      The real issue is why the IsBakeable interface has a toast() method in the first place...

  4. Ya, Sure. by wisnoskij · · Score: 5, Insightful

    Ya, sure. It is so much better to use the phrase: "The program contains a variable that stores your name", instead of: "The program knows your name". English, ect. all was not designed to work that way. Unless you want to take a week to describe a single program, it really helps to anthropomorphise it.

    --
    Troll is not a replacement for I disagree.
    1. Re:Ya, Sure. by N1AK · · Score: 2

      Yeah the blanket dislike for anthropomorphizing surprised me as well. The example of how discussing program behavior/structure as though it is an example of the issues this causes is useful and informative; refusing to use words like 'know', 'tries' etc when discussing programs outright, rather than keeping in mind that they can be potentially misleading abstractions, seems like throwing the baby out with the bath water.

    2. Re:Ya, Sure. by sandytaru · · Score: 3, Informative

      I think there is a layer there at which point it's useful, and one at which it's not. It's fine to anthropomorphize a program when explaining to an end user why it's broken, e.g. "The program doesn't know to check for the start date of a new lease when the old one expires, it just thinks it should activate it regardless." (Actual problem we're having to fix right now.) But of course the developer shouldn't think that the program is confused; it's doing exactly what we asked of it in a nightly stored procedure, and not bothering to check start dates because it wasn't programmed to do that in the first place!

      --
      Occasionally living proof of the Ballmer peak.
    3. Re: Ya, Sure. by Anonymous Coward · · Score: 2, Insightful

      Atheism suffers from this too... There are so many standard phrases for swearing/exclamations that invoke some deity construct that atheists are forced to continue using them as they are too entrenched in our cultures to replace. "Damn you!" Is too perfect to replace with "my anger is so vivid that I want the universe to arrange something very bad to happen to you. Err, except I don't believe the universe is sentient of course, ummm, errrr, I think I'll shut up now"

    4. Re:Ya, Sure. by Oligonicella · · Score: 2

      Or someone hearing "the program knows your name" can simply recognize it's meaning instead of tossing a hissy.

  5. My code by Tupper · · Score: 2

    My code wants to be antropomorhized!

    1. Re:My code by NoNonAlphaCharsHere · · Score: 2

      I right spill chuckers two!

  6. Encapsulation by mrflash818 · · Score: 4, Insightful

    For me, I prefer OO programming (c++/java) to functional programming (C-lang), just due to encapsulation. I like having an object, with methods for its attributes, public/private methods, and such. Then having the objects interact in my program. It kinda makes sense to how I think.

    However, I also think that if a team or individual programmer can release software that serves a useful purpose, and is maintainable, then those are the only things that matter. Which language, functional or object-oriented 'way' that was used to get there? Seems less important.

    --
    Uh, Linux geek since 1999.
    1. Re:Encapsulation by beelsebob · · Score: 2

      Nor does encapsulation mean what he thinks it mans. The idea that you can't do encapsulation unless you have OOP is completely flawed.

    2. Re:Encapsulation by TheSunborn · · Score: 3, Insightful

      What the oop languages did, was to add explicit language support for all the features and idioms which software developers did anyway.

      This make development and maintenance much more easy.
       

    3. Re:Encapsulation by istartedi · · Score: 2

      It sounds like you might be somebody who learned to program someplace other than a CS degree, or who got a CS degree and forgot some academic stuff that you haven't used in your day-to-day work.

      You've run afoul of the "functional" doesn't mean "uses function calls a lot" problem and some chest-pounders here are slamming you for that. As an EE who only had a few undergrad CS courses, I've had similar problems. Somewhere out there is a USENET thread in which I'm assuming that "side effects" are "bad side effects" as opposed to manageable outcomes of calling non-pure functions. Thus, I can empathize with you.

      Chances are you're a fine programmer who just never studied functional programming. Forget the pedants, and google Lisp, Haskell, "pure function", "functional programming", etc. I'll wager you won't want to write programs in those languages but will find it interesting. You'll also be less likely to bring pedants out of the wood work once you're familiar with the terminology.

      --
      For all intensive purposes, "whom" is no longer a word. That begs the question, "who cares"?
  7. Don't anthropomorphize your programs... by Chris+Mattern · · Score: 4, Funny

    ...they hate that.

  8. Missing the point by pushing-robot · · Score: 5, Insightful

    OO isn't about anthropomorphism, it's about isolation and providing a clear API. If this was a large scale project with fifty people working on code that could move students, I don't want them implementing fifty different versions of move_student that will break whenever the Student or Classroom model changes.

    I know it's trendy to hate on things that have been around a while, and OO indeed isn't the answer to everything, but it's still a useful way of keeping a complex program from getting out of control.

    --
    How can I believe you when you tell me what I don't want to hear?
    1. Re:Missing the point by phantomfive · · Score: 4, Insightful

      OO isn't about anthropomorphism, it's about isolation and providing a clear API.

      Believe it or not, isolation and 'providing a clear API' existed before OOP, so you can't say that's it. In general, object oriented programming means that the functions go with the data.

      --
      "First they came for the slanderers and i said nothing."
    2. Re:Missing the point by pushing-robot · · Score: 2

      There's a big difference between allowing something and requiring it. I think OO was the natural evolution of concepts like interfaces and namespacing, but what sets it apart is that it insists (so far as it can) the developer encapsulate information, while procedural languages at best suggest it.

      Of course it's possible to write clear code in any paradigm, and some of the most beautiful code I've ever seen has been purely procedural, but that is unfortunately the exception. Most code I read is pretty poor, and the worst OO code I've encountered is far ahead of the worst procedural code in terms of readability and maintainability. I'll take the kludginess of OO over the heroic measures it takes to keep a large C project from turning into an unintelligible mess.

      --
      How can I believe you when you tell me what I don't want to hear?
    3. Re:Missing the point by phantomfive · · Score: 2

      No, sorry, multiple dispatch existed in Lisp before object oriented programming.

      --
      "First they came for the slanderers and i said nothing."
  9. Calling poor code organization OOP is flawed by RhettR · · Score: 4, Interesting

    Dijkstra makes an argument about what he calls object oriented programming, but doesn't really use OOP. That he happens to base his argument around two styles of coding, one that is clearly procedural, and one that happens to use objects, is merely accidental. His argument is centered around poor code organization, plain and simple. He passingly slaps down some code modeling Student as an object, neglecting to mention anything about why one would do that (e.g. encapsulation), and completely fails to even mention other OOP ideas such as composition, inheritance, polymorphism, etc. In short, he bashes horrendous code organization, and calls that OOP, without addressing a single reason typically given in favor of OOP. Frankly, that article was awful.

    1. Re:Calling poor code organization OOP is flawed by gnasher719 · · Score: 4, Insightful

      Just saying: It's not Dijkstra talking rubbish. Dijkstra is died 12 years ago. There is a handwritten article by Dijkstra which probably made sense in 1983 when it was written. In 1983 Dijkstra didn't know about C++. Stroustroup didn't know about C++ in 1983.

  10. The limits of Dijkstra by anchovy_chekov · · Score: 3, Insightful

    I think what this article highlights is that not everything Dijkstra said was gold. Nor does slavishly following his missives make you a better programmer.

  11. stupid by Tom · · Score: 4, Insightful

    One of the more stupid blog-level postings I've read. I use "blog-level" as an insult, btw. because blogs are generally a source of shallow thinking, because it just is too convenient to publish some thoughts. When it is more trouble, you're also forced to polish them more.

    Firstly, to understand the difference between trying to do and "trying to do", read some Dennett. If correctly understood, anthropomorphisms like the attribution of intention to a non-intentional entity can be extremely helpful.

    Secondly, not even his example is anywhere near what he's trying to explain. Yes, the analogy breaks down but it has nothing to do with the convulted reasoning he's applying. The cause for the analogy to break down is that there's no equivalent to walking to the classroom in his example. All of his code simply assigns a classroom number, without any equivalent of the walking part. As soon as you add that - magic ! - the analogy works again.

    --
    Assorted stuff I do sometimes: Lemuria.org
  12. Toaster DRM by tonywestonuk · · Score: 4, Funny

    Oh FFS. Look on the bloody Bagel packet before you buy. If it doesn't say 'implements toastable' then don't buy em. Yeh , they may be a few bucks more, but thats your own fault for getting a toaster that is made by the same people who make the bagels.

    1. Re:Toaster DRM by tonywestonuk · · Score: 4, Funny

      What you can buy is an 'Toast Decorator' - its a Chinese import, probably not the most legal thing as they've cracked the DRM........ what you do is just slip your generic, non toastable bagels in this toasting bag, and then shove it in your toaster. It accepts the 'self.toast()' method, and does whats required to make sure your bagels are toasted to perfection every time. Result!

    2. Re:Toaster DRM by anchovy_chekov · · Score: 4, Funny

      You insensitive clod. I bought one of these recently, in an effort to reflow the solder on my failing Mac Book Pro. Now all I have is a dead laptop and a toaster that smells of Apple.

  13. This is why I like Python so I can use OOP or not by caseih · · Score: 4, Interesting

    This is why I like Python. Python allows object-oriented programming styles or procedural, or a mix. Python has a lot of warts, but it's really refreshing to me to use. Every time I look at Java, I'm turned off by the forcing of class-based object-oriented programming for everything, even when the program is really just procedural with a static main. Perhaps this tends to make programmers try to shoehorn OOP when it's not the best fit.

  14. Balance by Tablizer · · Score: 3, Insightful

    OOP is a tool, and like any tool it has places and times where it is useful, and places and times where it is not. Knowing when to use it and when not to is part of the art and craft of programming. Does OOP improve the overall organization, reading, and flexibility of a given portion of software to change? If you don't have a good answer, then consider skipping it.

    All-or-nothing zealots are usually full of squishy stuff. In the past, one was told to model all domain nouns as objects and/or classes (depending on language flavor). That doesn't always work well, especially if a database is being used. Domain nouns are often poor candidates for OO-ness. Objects seem better suited, however, for computing-domain nouns, such as GUI's, report columns, files, sockets, security profiles, etc. That's my experience.

    (However, lately GUI's seem to have outgrown OOP, as multi-factor and situational grouping and searching becomes more important for managing mass attributes and event handlers, and I'd like to see research in database-driven GUI engines, perhaps with "dynamic" relational or the like.)

  15. Re:This is exactly what OO solves... by rubycodez · · Score: 2

    nonsense, procedural code cooks until the toasted flag is true.

  16. Anthropomorphism very useful, when used correctly by SuperKendall · · Score: 2

    A dash of anthropomorphism is actually quite helpful to a programmer - the trick is that people are just not applying it in quite the right way; instead of considering a program or objects as a rational kind of being that does what you tell it, instead consider that code and objects are all malevolent entities that exist only to twist what you tell them to do into the most horrific possible result.

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
  17. Re:Degenerate by readin · · Score: 2

    Anthropomorphism is degenerate no matter the situation.

    True. Anthropomorphism is always trying to get into trouble and ruin other people's lives.

    --
    I often don't like the choices people make, but I like the fact that people make choices. That's why I'm a conservative.
  18. Do anthromorphise! by dwheeler · · Score: 3, Insightful

    Don’t anthropomorphize computers, they hate that notes that most developers do use anthropomorphic language. I think there are probably a variety of good reasons for it, too. Here's one speculation: When we communicate with a human, we must use some language that will be more-or-less understood by the other human. Over the years people have developed a variety of human languages that do this pretty well (again, more-or-less). Human languages were not particularly designed to deal with computers, but languages have been honed over long periods of time to discuss human behaviors and their mental states (thoughts, beliefs, goals, and so on). In any case, the problem isn't anthropomorphic language, it's the use of a bad analogy.

    --
    - David A. Wheeler (see my Secure Programming HOWTO)
  19. Less accurate statement by SuperKendall · · Score: 4, Insightful

    "The program doesn't know to check for" is in fact more accurate than "The program wasn't designed to check for". The second statement could mean that it wasn't designed to do something, but might do it anyway - what the program ACTUALLY does is left somewhat ambiguous (this is a technique lawyers will often use answering in court). In the first instance the statement makes it quite clear the program DOES NOT KNOW HOW to do what you are talking about.

    You can shorten something so far for clarity, but if you go to far you end up with less clarity.

    The "thinks" part at the end could go though, removing that does no harm to clarity.

    The thing is, writing clearly is just plain hard - being able to use anthropomorphic kinds of terms helps make it simpler to add clarity to description at the cost of somewhat wordier sentences... kind of like how sometimes you make a program a little more verbose so that a different programmer coming across the code later can understand it.

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
    1. Re:Less accurate statement by BarbaraHudson · · Score: 2

      Or even simpler (and closer to the truth) "We screwed up. We didn't code a check for the start date."

      No passing the blame off to some imaginary "bug".

      --
      "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
    2. Re: Less accurate statement by ShieldW0lf · · Score: 2

      It's either a feature or a bug.

      I understand what you are saying, but language that makes the computer sound like an out of control actor makes me sound like I'm not in control of my job and my dog ate my homework, so I make an effort not to use it. I think it makes me look less professional. Language that involves me saying things like "I designed it that way for these justified reasons, but we can discuss changing it", or "I'm not sure why it's responding this way, but it's my screw up and these are the resources I need to try and fix it and this is my confidence that I will succeed, do you want me to try." project a better image.

      --
      -1 Uncomfortable Truth
    3. Re: Less accurate statement by SuperKendall · · Score: 3, Interesting

      language that makes the computer sound like an out of control actor... describes most accurately what is really going on. You sent the slinky down the stairs but it veered sideways and hit a wall.

      A program is basically a state machine, a very complex one - we start it and watch what happens, but with a complex enough state machine it is basically indistinguishable from watching a video feed of a person robbing a convenience store. You can describe later on what went wrong quite well, but at the time the result is unexpected.

      To be the description of something as a "bug" is leaning more towards papering over flaws; just admit we build systems and almost never have a 100% understanding of what they will do in operation. That is far more truthful than saying there is *A* bug rather than the program is a series of statements that may do what we intend, but may not.

      --
      "There is more worth loving than we have strength to love." - Brian Jay Stanley
  20. Longstanding Precedent by nuckfuts · · Score: 4, Funny

    This has been going on since before object-oriented programming existed. In Unix, for example, processes have "parents", "children", and can be "killed".

  21. Car Analogy by PaddyM · · Score: 3, Funny

    Lets say you're a traveling auto salesman, and you would like to sell your cars to different stores around the state. You could either drive each car, one at a time, to each assigned destination and hitchhike back to your starting point (always with a towel). Or you could come up with an algorithm for taking all the cars, putting them into a truck, and finding the shortest path that visits each auto store, saving gas and giving you the street credibility to comment on the appropriateness of OOP vs procedural languages. Then, after having spent a more fulfilling life than most people by being so efficient, you can watch as people invoke your name, and come up with a poor analogy which doesn't really explain OOP vs procedural languages that shows up on Slashdot.

  22. Spoken like someone who forgets how humans work by melchoir55 · · Score: 2

    Humans are bad at abstract logic. Not just bad, but shockingly, horribly bad. It requires many years of teaching to get them to learn how to reason according to logical principles and to avoid logical fallacies. Most people never get there at all.

    OOP is a step in the right direction, for some kinds of programming. You don't always need to tell a story about your concept space. Sometimes what you're doing is so simple, and so shortlived, that it doesn't matter. However if you want long term maintainability and something that other people are going to be able to learn as quickly as possible, OOP wins. Consider the following example:

    English:
    John loves Sally. People like to spend time with others that they love. Does John like spending time with Sally?

    If you are human and not deeply mentally impaired, you will quickly answer "yes" to the above question

    Symbolic logic:
    Derive Q (John likes spending time with Sally)
    P (Assertion)
    P -> Q (Modus Ponens)

    Did you immediately think in your brain the following:
    Q (Consequence of premises 1 & 2)

    A lot of people who stare at that sequence of symbols will require a few moments to process it. Very few will read it as trivially as they read the English expression, although both expressions communicate the same relationships and information. Why is that? It is because the logical derivation is an abstraction above the English expression (which itself is of course an abstraction of something else). Every level of abstraction adds to how difficult it is for a human to comprehend something. It doesn't mean they can't get it, it means it will take longer (though depending on the person it might mean they can't get it).

    Do you want people to be able to read your code in the future? The best chance of them succeeding is to use object oriented programming, and to create a class model that closely resembles what most people intuitively understand as the concept space you are working in.

    Humans did not evolve to process information regarding Ps and Qs. They evolved to process information about Johns and Sallys. They are much better at the latter than the former.

    1. Re:Spoken like someone who forgets how humans work by phantomfive · · Score: 2

      A lot of people who stare at that sequence of symbols will require a few moments to process it. Very few will read it as trivially as they read the English expression

      It's not very well written.

      although both expressions communicate the same relationships and information.

      I don't think they actually do. You don't define what P means, and actually you have two assertions in your English sentence, but only one apparently in your symbolic logic.

      --
      "First they came for the slanderers and i said nothing."
  23. Re:Degenerate by Anonymous Coward · · Score: 3, Insightful

    > Anthropomorphism is degenerate no matter the situation.

    a) Man is the measure of all things.

    Anthropomorphism is something we cannot really ever abandon -- be it regarding our tools and even regarding what goes around us.

    I always got upset with people who are Biology Nazis and go like "you cannot say that organism wanted to lose its teeth". Well, this is obvious! And yet (IMHO) it's a perfect valid way to state a fact -- either for youngsters who cannot grasp the way evolution really works and for adults, as a figure of speech.

    b) The discourse at the end of The Great Dictator, by Chaplin, would also be useful. If you abstract enough, a good part of morality is lost. You are not machines...

    c) OOP was never about anthropomorphism. One model entities, which might be humans or not. The article author didn't like an anthropomorphic example. Fine, do it with bacteria. Analogies now and then break. This has nothing to do with OOP as a method for problem specification and treatment.

    d) Sometimes we get fed up with things and the current trend of flat designs is an example. We got tired of anthropomorphic controls. Very nice. And it shall pass, too. And we'll be back to more human-adapted designs, futurely, and will be touted as a novelty. Hah!

    e) I've read both articles: the author has a much narrower aim at how one analogy broke; EWD says anthropomorphism fails (with what I agree) in a text written by hand (I had the pleasure to read another some months ago, he even let some text he stroke through remain. It's obvious he's not against anthropomorphism de per se, but he cautions us about the dangers of using it (like in the expression "restless waves").

    f) OOP has its place, and in some niches it may not be as useful, so procedural might be better. But then this can be said about the car and the bicycle. Where I disagree with the author is about OOP being syntactic sugar, since OOP happens at an earlier stage -- before syntax takes place. The implementation of OOP might be seen as that, but then again an implementation is not the idea itself.

    g) The author is way above my knowledge level; but then, this might be the source of his problems. I'd humbly suggest he backs away of his expertise and try a more conventional big picture view. There's a reason why OOP was invented and it will be debunked by a better knowledge model -- not by a previous one.

  24. Re:Programming languages are not really "language" by loonycyborg · · Score: 2

    Btw, in reality procedural and object oriented are just two different views and controls on the exact same datastructures and process-flows.

    'Object oriented' just means that you can extend the type system of the language which is completely orthogonal to procedural programming. It doesn't matter if you use only base types in your sub-routines, or add some custom types made with oop. So those approaches aren't even mutually exclusive. Just some common language constructs, which some languages implement and some don't.

  25. What? by matunos · · Score: 4, Funny

    An analogy that breaks down if you push it too far?

    Ridiculous! You cannot push analogies. They are not tangible things.

  26. Re:Degenerate by rwa2 · · Score: 2, Funny

    OOP doesn't want to be anthropomorphized

  27. Re:Programming languages are not really "language" by skids · · Score: 5, Interesting

    What gets me is this:

    If you don't draw analogies (like anthropomorphism), or abstractions, how the hell do you choose your names in a way that lends itself to understandable code? The author should take his own argument one step further and realize that calling a string of bits a "student" is likewise anthropomorphising the data, and calling another memloc a "Classroom" is applying an anology to what is really going on. Then he could reduce is argument ad-absurdium to requiring that all identifiers be randomly chosenstring to avoid installing unintentional meaning into data structures and procedures/functions.

  28. Re:Degenerate by reve_etrange · · Score: 2, Interesting

    I always got upset with people...go like "you cannot say that organism wanted to lose its teeth". Well, this is obvious! And yet (IMHO) it's a perfect valid way to state a fact...

    It's what Daniel Dennett calls the "intentional stance." I agree with Dijkstra, that anthropomorphizing code is frequently problematic, but the intentional stance can be quite useful in general. Most of the systems we build and encounter in our daily lives are "intentional systems", designed to achieve specific purposes in an external physical reality, and the intentional stance is really parsimonious for these cases.

    --
    .: Semper Absurda :.
  29. not seeing the problem by khallow · · Score: 2

    Anthropomorphizing is not this ridiculous caricature. It is a very effective process by which we relate new information to information we inherently have. Would you rather relate new information in a way you and others can readily understand or in a way you and others can't readily understand?

    Sure, it's not perfect, but usually you're looking for good enough, not perfect. For example, consider this example from my neighbor, Yellowstone National Park. You are tourist and come across a bull (male) elk. It's a 600 pound member of the deer family with an antler spread around two meters wide. There are correct and incorrect ways to anthropomorphize the behavior of that bull elk. The following is the incorrect way which unfortunate, real world tourists use each year: "That's a pretty elk. I know he wants me to pet him, because I would like being petted if I were a pretty elk too!" Their world gets rocked as a result. Consider the alternate approach: "That's a big elk in the middle of rut season. I bet he'll be pissed if a crazy human tries to touch him. I would if I were running around hyped up on hormones." Look! No headbutt Ma! Obviously, neither approach captures what it means to be elk or those elk sensibilities. There is this certain lack of nuance of the elk point of view. But one approach, which I would go as far as to label an entirely correct approach to understanding in this scenario, keeps you from finding out what pointy antlers backed by 600 pounds of enraged elk can do to a person.

    My view is that humanity and our behaviors are sufficiently complex that one can shoehorn any understandable phenomenon into an anthropomorphic basis. The real problem is not the process, but insufficient understanding of the problem needed to come up with a sufficiently correct anthropomorphic model.