Pretty Smart? Why We Equate Beauty With Truth
Pretty Smart? Why We Equate Beauty With Truth
With some regularity we hear about the latest beauty-pageant contestant who has responded to a softball of a question with an epic fail of a mistake, a bizarre opinion or an incoherent ramble. There's the Panamanian contestant who believed that Confucius invented
the philosophy of 'Confusion, ' the Miss Hawaii who described the U.S. only in terms of the 'rocky shores' and 'sandy beaches' of Hawaii, and the Miss South Carolina Teen USA who explained that Americans don't know enough geography because too many people
can't afford maps.
Ridiculous. But what's even more ridiculous is that our brains bias us toward believing such people -- just because they're good-looking.
The German poet Friedrich Schiller wrote, 'Physical beauty is the sign of an interior beauty, a spiritual and moral beauty.' His belief seems odd if you've ever seen a portrait of Schiller: His prominent schnozzola would have knocked him out of the 1788 edition
of People Magazine's 'Sexiest Man Alive.'
In the years since, research has shown that from an early age -- in both sexes and across numerous cultures -- attractive people are judged to be smarter, kinder, more honest and trustworthy. Obviously, our bias toward thinking that 'what is beautiful is good'
makes for some bad mating decisions.
In politics, we are also more likely to believe and vote for people who are attractive. Ditto for hiring them. And when it comes to ostensibly blind justice, numerous studies from the 1970s through '90s found that more-attractive individuals are less likely
to be convicted of crimes and, if convicted, receive shorter-than-average sentences for the crime.
Why should this be? Some have suggested that since it is pleasurable to meet someone attractive and someone good and honest, we unconsciously conflate the two. But this convergence of rewarding experiences seems dubious. After all, few of us intermix the pleasure
of, say, reading about the triumph of the abolitionist movement with the pleasure of taking a bubble bath and eating a box of Twinkies.
Instead, it seems that the brain confuses the metaphorical and the literal -- a fairly common sort of error, because brain regions often multitask. The same region, for instance, is involved in processing physical and emotional pain and in 'feeling' someone
else's pain. Another brain region is central to both gustatory disgust (responding to the taste of rotten food with reflexes that make you feel sick to your stomach) and moral disgust (responding to some appalling act by making you feel sick to your stomach).
Work by Takashi Tsukiura and Roberto Cabeza of Duke University shows something similar with looks: The medial orbitofrontal cortex of the brain is involved in rating both the beauty of a face and the goodness of a behavior, and the level of activity in that
region during one of those tasks predicts the level during the other. In other words, the brain does similar things when contemplating beautiful minds, hearts or cheekbones. And it assumes that cheekbones tell you something about minds and hearts.
It's a discouraging finding. But there's also some good news in this story: The brain can get confused in both directions. In other words, the same neural wiring that gives rise to 'What is beautiful is good' also generates 'What is good is beautiful.'
In studies by Sampo Paunonen of the University of Western Ontario, heterosexual subjects of both genders viewed pictures of people of the opposite sex, described as having varying degrees of intelligence, independence and honesty. Degrees of independence and
intelligence had no effect on their ratings of attractiveness. But people who were described as being more honest were rated as more likable, and the more likable, the more physically attractive.
It seems that things even out in the end. On the one hand, we're more likely to believe that the earth is flat just because a beauty queen says so. But on the other hand, people are more likely to see that the goodness of Mother Teresa or Gandhi is beautiful.
I don't know whether will i believe or not......recently,there are many things happened around me confirm it looks like ...true~ H.C
Pretty Smart? Why We Equate Beauty With Truth的更多相关文章
- Properties
java.util 类 Properties 因为 Properties 继承于 Hashtable,所以可对 Properties 对象应用 put 和 putAll 方法.但强烈反对使用这两个方法 ...
- java.util.Properties
1 Properties文件中分隔符及空格的处理 因为 Properties 继承于 Hashtable,所以可对 Properties 对象应用 put 和 putAll 方法.但强烈反对使用这两个 ...
- 关于Java的Properties类
Properties类 先来学习下Properties类吧. Properties 类表示了一个持久的属性集.Properties 可保存在流中或从流中加载.属性列表中每个键及其对应值都是一个字符串. ...
- Essay写作用对标点符号很重要!
很多留学生在essay写作中对于标点符号的正确使用可能不是太清楚,今天Meeloun小编给大家整理了一些关于标点符号的正确打开方式,希望可以帮到同学们! Colloquialism俗语: 如果要在写作 ...
- shelly - HYMN TO INTELLECTUAL BEAUTY
HYMN TO INTELLECTUAL BEAUTY III No voice from some sublimer world hath ever To sage or poet these r ...
- 英语阅读——The confusing pursuit of beauty
这篇文章是<新视野大学英语>第四册的第二单元的文章,很好的一篇议论文,读起来也很有意思. 1 If you're a man, at some point a woman will ask ...
- Smart Tag——DevExpress WPF初探
Smart Tag是一个设计时扩展,所有标准控件均自带这个功能,当然也包括 DevExpress WPF Controls .可以快速设置控件的值或者绑定最重要的属性.它还可以帮助你完成一些重复的工作 ...
- International Conference for Smart Health 2015 Call for Papers
Advancing Informatics for healthcare and healthcare applications has become an international researc ...
- Call for Papers International Conference for Smart Health (ICSH) 2014
Call for PapersInternational Conference for Smart Health (ICSH) 2014 Beijing, China July 10-11, 2014 ...
随机推荐
- numpy 中的 broadcasting 理解
broadcast 是 numpy 中 array 的一个重要操作. 首先,broadcast 只适用于加减. 然后,broadcast 执行的时候,如果两个 array 的 shape 不一样,会先 ...
- C语言判断文件夹或者文件是否存在的方法【转】
C语言判断文件夹或者文件是否存在的方法 方法一:access函数判断文件夹或者文件是否存在 函数原型: int access(const char *filename, int mode); 所 ...
- c++类大四个默认函数-构造函数 析构函数 拷贝构造函数 赋值构造函数
每个类只有一个析构函数和一个赋值函数,但可以有多个构造函数(包含一个拷贝构造函数,其它的称为普通构造函数).对于任意一个类A,如果不编写上述函数,C++编译器将自动为A 产生四个缺省的函数,例如: A ...
- Swift 模式匹配
前言 在 Swift 中模式匹配是个重要的概念. 最常用的模式匹配是 switch 语法. 模式匹配非常灵活,在使用 switch 进行一轮模式匹配时,不需要所有的 case 都是同一种风格. let ...
- golang----GC的实现原理
Golang从1.5开始引入了三色GC, 经过多次改进, 当前的1.9版本的GC停顿时间已经可以做到极短.停顿时间的减少意味着"最大响应时间"的缩短, 这也让go更适合编写网络服务 ...
- MUI class="mui-switch" 开关监听
如何对MUI中的switch开关按钮进行监听, 页面代码如下: <form class="mui-input-group"> <ul class="mu ...
- swift学习之常量和变量
常量:就是在初始化时(试试定义时不赋值会不会报错)赋予一个准确的值,能够在非常多地方直接用到,用letkeyword生命 变量:这个就不用说了,就是能够在下一秒你能够随便改变的量,用varkeywor ...
- Boost中的智能指针(转)
这篇文章主要介绍 boost中的智能指针的使用.(转自:http://www.cnblogs.com/sld666666/archive/2010/12/16/1908265.html) 内存管理是一 ...
- Android UI系列-----CheckBox和RadioButton(1)
主要记录一下CheckBox多选框和RadioGroup.RadioButton单选框的设置以及注册监听器 1.CheckBox 布局文件: <LinearLayout xmlns:androi ...
- pandas通过皮尔逊积矩线性相关系数(Pearson's r)计算数据相关性
皮尔逊积矩线性相关系数(Pearson's r)用于计算两组数组之间是否有线性关联,举个例子: a = pd.Series([1,2,3,4,5,6,7,8,9,10]) b = pd.Series( ...