CINXE.COM

Victor Stenger - God: The Failed Hypothesis | Point of Inquiry

<!DOCTYPE html> <html class="no-js" lang="en-US"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="pingback" href="http://pointofinquiry.org/xmlrpc.php" /> <link rel="stylesheet" href="https://use.typekit.net/lmm6ycy.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <link rel="apple-touch-icon" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-iphone-60x60.png"> <link rel="apple-touch-icon" sizes="60x60" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-ipad-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-iphone-retina-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-ipad-retina-152x152.png"> <link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-LRlmVvLKVApDVGuspQFnRQJjkv0P7/YFrw84YYQtmYG4nK8c+M+NlmYDCv0rKWpG" crossorigin="anonymous"> <!--wordpress head--> <title>Victor Stenger - God: The Failed Hypothesis | Point of Inquiry</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" type="application/rss+xml" title="Point of Inquiry &raquo; Feed" href="http://pointofinquiry.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="Point of Inquiry &raquo; Comments Feed" href="http://pointofinquiry.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Point of Inquiry &raquo; Victor Stenger &#8211; God: The Failed Hypothesis Comments Feed" href="http://pointofinquiry.org/2007/03/victor_stenger_god_the_failed_hypothesis/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/pointofinquiry.org\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"http:\/\/pointofinquiry.org\/wp-includes\/js\/twemoji.js?ver=6.6.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='http://pointofinquiry.org/wp-includes/css/dist/block-library/style.css?ver=6.6.2' type='text/css' media='all' /> <style id='wp-block-library-theme-inline-css' type='text/css'> .wp-block-audio :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-audio :where(figcaption){ color:#ffffffa6; } .wp-block-audio{ margin:0 0 1em; } .wp-block-code{ border:1px solid #ccc; border-radius:4px; font-family:Menlo,Consolas,monaco,monospace; padding:.8em 1em; } .wp-block-embed :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-embed :where(figcaption){ color:#ffffffa6; } .wp-block-embed{ margin:0 0 1em; } .blocks-gallery-caption{ color:#555; font-size:13px; text-align:center; } .is-dark-theme .blocks-gallery-caption{ color:#ffffffa6; } :root :where(.wp-block-image figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme :root :where(.wp-block-image figcaption){ color:#ffffffa6; } .wp-block-image{ margin:0 0 1em; } .wp-block-pullquote{ border-bottom:4px solid; border-top:4px solid; color:currentColor; margin-bottom:1.75em; } .wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{ color:currentColor; font-size:.8125em; font-style:normal; text-transform:uppercase; } .wp-block-quote{ border-left:.25em solid; margin:0 0 1.75em; padding-left:1em; } .wp-block-quote cite,.wp-block-quote footer{ color:currentColor; font-size:.8125em; font-style:normal; position:relative; } .wp-block-quote.has-text-align-right{ border-left:none; border-right:.25em solid; padding-left:0; padding-right:1em; } .wp-block-quote.has-text-align-center{ border:none; padding-left:0; } .wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{ border:none; } .wp-block-search .wp-block-search__label{ font-weight:700; } .wp-block-search__button{ border:1px solid #ccc; padding:.375em .625em; } :where(.wp-block-group.has-background){ padding:1.25em 2.375em; } .wp-block-separator.has-css-opacity{ opacity:.4; } .wp-block-separator{ border:none; border-bottom:2px solid; margin-left:auto; margin-right:auto; } .wp-block-separator.has-alpha-channel-opacity{ opacity:1; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots){ width:100px; } .wp-block-separator.has-background:not(.is-style-dots){ border-bottom:none; height:1px; } .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){ height:2px; } .wp-block-table{ margin:0 0 1em; } .wp-block-table td,.wp-block-table th{ word-break:normal; } .wp-block-table :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-table :where(figcaption){ color:#ffffffa6; } .wp-block-video :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-video :where(figcaption){ color:#ffffffa6; } .wp-block-video{ margin:0 0 1em; } :root :where(.wp-block-template-part.has-background){ margin-bottom:0; margin-top:0; padding:1.25em 2.375em; } </style> <link rel='stylesheet' id='awsm-ead-public-css' href='http://pointofinquiry.org/wp-content/plugins/embed-any-document/css/embed-public.min.css?ver=2.7.4' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--cfi-blue: #084d93;--wp--preset--color--cfi-orange: #ea5213;--wp--preset--color--cfi-gray: #dadada;--wp--preset--color--cfi-black: #333333;--wp--preset--color--cfi-tan: #dedbc3;--wp--preset--color--rdf-blue: #1f2b59;--wp--preset--color--csh-blue: #26a4dd;--wp--preset--color--csh-purple: #414a9c;--wp--preset--color--csi-green: #379944;--wp--preset--color--cfi-ig-blue: #4198f0;--wp--preset--color--poi-blue: #14325a;--wp--preset--color--poi-gold: #be9e50;--wp--preset--color--tp-orange: #c64417;--wp--preset--color--sr-red: #741e23;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='gutenberg-color-style-css' href='http://pointofinquiry.org/wp-content/plugins/cfi-colors/includes/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='ub-extension-style-css-css' href='http://pointofinquiry.org/wp-content/plugins/ultimate-blocks/src/extensions/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='search-filter-plugin-styles-css' href='http://pointofinquiry.org/wp-content/plugins/search-filter-pro/public/assets/css/search-filter.min.css?ver=2.5.18' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-wp-main-css' href='http://pointofinquiry.org/wp-content/themes/poi/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap4-css' href='http://pointofinquiry.org/wp-content/themes/bootstrap-basic4/assets/css/bootstrap.min.css?ver=4.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-font-awesome5-css' href='http://pointofinquiry.org/wp-content/themes/bootstrap-basic4/assets/fontawesome/css/all.min.css?ver=5.15.4' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-main-css' href='http://pointofinquiry.org/wp-content/themes/bootstrap-basic4/assets/css/main.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='newsletter-css' href='http://pointofinquiry.org/wp-content/plugins/newsletter/style.css?ver=8.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='newsletter-leads-css' href='http://pointofinquiry.org/wp-content/plugins/newsletter-leads/css/leads.css?ver=1.5.0' type='text/css' media='all' /> <style id='newsletter-leads-inline-css' type='text/css'> #tnp-modal-content { height:400px; width:500px; background-color: #002e5b !important; background-image: none; background-repeat: no-repeat; background-size: cover; color: #ffffff; } #tnp-modal-body { color: #ffffff; } #tnp-modal-body .tnp-privacy-field { color: #ffffff; } #tnp-modal-body .tnp-privacy-field label a { color: #ffffff; } #tnp-modal-content input.tnp-submit { background-color: #988c3d; border: none; background-image: none; color: #fff; cursor: pointer; } #tnp-modal-content input.tnp-submit:hover { filter: brightness(110%); } .tnp-modal { text-align: center; padding: 30px; } </style> <link rel='stylesheet' id='parent-style-css' href='http://pointofinquiry.org/wp-content/themes/bootstrap-basic4/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='cfi-style-css' href='http://pointofinquiry.org/wp-content/themes/css/style.css?ver=1703709909' type='text/css' media='all' /> <link rel='stylesheet' id='child-style-css' href='http://pointofinquiry.org/wp-content/themes/poi/style.css?ver=1654896205' type='text/css' media='all' /> <script type="text/javascript" src="http://pointofinquiry.org/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="http://pointofinquiry.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" id="search-filter-plugin-build-js-extra"> /* <![CDATA[ */ var SF_LDATA = {"ajax_url":"http:\/\/pointofinquiry.org\/wp-admin\/admin-ajax.php","home_url":"http:\/\/pointofinquiry.org\/","extensions":[]}; /* ]]> */ </script> <script type="text/javascript" src="http://pointofinquiry.org/wp-content/plugins/search-filter-pro/public/assets/js/search-filter-build.min.js?ver=2.5.18" id="search-filter-plugin-build-js"></script> <script type="text/javascript" src="http://pointofinquiry.org/wp-content/plugins/search-filter-pro/public/assets/js/chosen.jquery.min.js?ver=2.5.18" id="search-filter-plugin-chosen-js"></script> <link rel="https://api.w.org/" href="http://pointofinquiry.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="http://pointofinquiry.org/wp-json/wp/v2/posts/2072" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://pointofinquiry.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.6.2" /> <link rel='shortlink' href='http://pointofinquiry.org/?p=2072' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="http://pointofinquiry.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fpointofinquiry.org%2F2007%2F03%2Fvictor_stenger_god_the_failed_hypothesis%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="http://pointofinquiry.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fpointofinquiry.org%2F2007%2F03%2Fvictor_stenger_god_the_failed_hypothesis%2F&#038;format=xml" /> <meta name="generator" content="Site Kit by Google 1.135.0" /> <style></style> <!-- SEO meta tags powered by SmartCrawl https://wpmudev.com/project/smartcrawl-wordpress-seo/ --> <link rel="canonical" href="http://pointofinquiry.org/2007/03/victor_stenger_god_the_failed_hypothesis/" /> <meta name="description" content="Victor Stenger is Emeritus Professor of Physics at the University of Hawaii and Adjunct Professor of Philosophy at the University of Colorado. He is also fo ..." /> <script type="application/ld+json">{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"http:\/\/pointofinquiry.org\/#schema-publishing-organization","url":"http:\/\/pointofinquiry.org","name":"Point of Inquiry","logo":{"@type":"ImageObject","@id":"http:\/\/pointofinquiry.org\/#schema-organization-logo","url":"https:\/\/pointofinquiry.org\/wp-content\/uploads\/sites\/30\/2018\/12\/poi-blue-text.png","height":60,"width":60}},{"@type":"WebSite","@id":"http:\/\/pointofinquiry.org\/#schema-website","url":"http:\/\/pointofinquiry.org","name":"Point of Inquiry","encoding":"UTF-8","potentialAction":{"@type":"SearchAction","target":"http:\/\/pointofinquiry.org\/search\/{search_term_string}\/","query-input":"required name=search_term_string"}},{"@type":"BreadcrumbList","@id":"http:\/\/pointofinquiry.org\/2007\/03\/victor_stenger_god_the_failed_hypothesis?page&year=2007&monthnum=03&name=victor_stenger_god_the_failed_hypothesis\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/pointofinquiry.org"},{"@type":"ListItem","position":2,"name":"All Episodes","item":"http:\/\/pointofinquiry.org\/all-episodes\/"},{"@type":"ListItem","position":3,"name":"Uncategorized","item":"http:\/\/pointofinquiry.org\/category\/uncategorized\/"},{"@type":"ListItem","position":4,"name":"Victor Stenger &#8211; God: The Failed Hypothesis"}]},{"@type":"Person","@id":"http:\/\/pointofinquiry.org\/author\/dcerrado\/#schema-author","name":"Derrick Cerrado","url":"http:\/\/pointofinquiry.org\/author\/dcerrado\/"},{"@type":"WebPage","@id":"http:\/\/pointofinquiry.org\/2007\/03\/victor_stenger_god_the_failed_hypothesis\/#schema-webpage","isPartOf":{"@id":"http:\/\/pointofinquiry.org\/#schema-website"},"publisher":{"@id":"http:\/\/pointofinquiry.org\/#schema-publishing-organization"},"url":"http:\/\/pointofinquiry.org\/2007\/03\/victor_stenger_god_the_failed_hypothesis\/"},{"@type":"NewsArticle","mainEntityOfPage":{"@id":"http:\/\/pointofinquiry.org\/2007\/03\/victor_stenger_god_the_failed_hypothesis\/#schema-webpage"},"author":{"@id":"http:\/\/pointofinquiry.org\/author\/dcerrado\/#schema-author"},"publisher":{"@id":"http:\/\/pointofinquiry.org\/#schema-publishing-organization"},"dateModified":"2020-09-22T10:39:23","datePublished":"2007-03-02T12:13:00","headline":"Victor Stenger - God: The Failed Hypothesis | Point of Inquiry","description":"Victor Stenger is Emeritus Professor of Physics at the University of Hawaii and Adjunct Professor of Philosophy at the University of Colorado. He is also fo ...","name":"Victor Stenger &#8211; God: The Failed Hypothesis"}]}</script> <meta property="og:type" content="article" /> <meta property="og:url" content="http://pointofinquiry.org/2007/03/victor_stenger_god_the_failed_hypothesis/" /> <meta property="og:title" content="Victor Stenger - God: The Failed Hypothesis | Point of Inquiry" /> <meta property="og:description" content="Victor Stenger is Emeritus Professor of Physics at the University of Hawaii and Adjunct Professor of Philosophy at the University of Colorado. He is also fo ..." /> <meta property="og:image" content="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2019/01/22164519/Point-of-Inquiry-Logo-2018.jpg" /> <meta property="og:image:width" content="1400" /> <meta property="og:image:height" content="1400" /> <meta property="article:published_time" content="2007-03-02T12:13:00" /> <meta property="article:author" content="Derrick Cerrado" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="https://twitter.com/pointofinquiry" /> <meta name="twitter:title" content="Victor Stenger - God: The Failed Hypothesis | Point of Inquiry" /> <meta name="twitter:description" content="Victor Stenger is Emeritus Professor of Physics at the University of Hawaii and Adjunct Professor of Philosophy at the University of Colorado. He is also fo ..." /> <meta name="twitter:image" content="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2019/01/22164519/Point-of-Inquiry-Logo-2018.jpg" /> <!-- /SEO --> <script> document.documentElement.className = document.documentElement.className.replace('no-js', 'js'); </script> <style> .no-js img.lazyload { display: none; } figure.wp-block-image img.lazyloading { min-width: 150px; } .lazyload, .lazyloading { opacity: 0; } .lazyloaded { opacity: 1; transition: opacity 400ms; transition-delay: 0ms; } </style> <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style><link rel="icon" href="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2023/09/19143246/poi-favicon.png" sizes="32x32" /> <link rel="icon" href="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2023/09/19143246/poi-favicon.png" sizes="192x192" /> <link rel="apple-touch-icon" href="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2023/09/19143246/poi-favicon.png" /> <meta name="msapplication-TileImage" content="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2023/09/19143246/poi-favicon.png" /> <style type="text/css" id="wp-custom-css"> #comments { display: none; } .swp_social_panel a { color: white !important; } .wp-block-columns { flex-wrap: nowrap !important; } #donation-block .donation-nav li a.active { color: white !important; } </style> <!--end wordpress head--> <style>.async-hide { opacity: 0 !important} </style> <script>(function(a,s,y,n,c,h,i,d,e){s.className+=' '+y;h.start=1*new Date; h.end=i=function(){s.className=s.className.replace(RegExp(' ?'+y),'')}; (a[n]=a[n]||[]).hide=h;setTimeout(function(){i();h.end=null},c);h.timeout=c; })(window,document.documentElement,'async-hide','dataLayer',4000, {'GTM-T4DNJDG':true});</script> <!-- GA Tracking Code --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-102208537-1', 'auto', {'allowLinker': true}); ga('require', 'GTM-T4DNJDG'); ga('require', 'linker'); ga('linker:autoLink', ['secure.centerforinquiry.net', 'centerforinquiry.org', 'secularhumanism.org', 'skepticalinquirer.org', 'richarddawkins.net', 'openlysecular.org', 'archives.centerforinquiry.net', 'csiconference.org' ] ); ga('send', 'pageview'); </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-WF32MW7');</script> <!-- End Google Tag Manager --> <!-- Hotjar Tracking Code for https://centerforinquiry.org --> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:849500,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv='); </script> </head> <body class="post-template-default single single-post postid-2072 single-format-standard wp-embed-responsive"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WF32MW7" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="top" class="wrapper"> <div class="container page-container d-block d-print-none" style="padding-left: 0px !important; padding-right: 0px !important;"> <header class="page-header page-header-sitebrand-topbar grey"> <div class="row main-navigation"> <nav class="navbar navbar-toggleable-xs"> <a class="home-button d-none d-md-block" href="http://pointofinquiry.org/" title="Point of Inquiry" rel="home"> <img width="558" height="218" src="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text.png" class="attachment-full size-full" alt="" decoding="async" fetchpriority="high" srcset="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text.png 558w, http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text-300x117.png 300w" sizes="(max-width: 558px) 100vw, 558px" /> </a> <a class="home-button d-md-none" href="http://pointofinquiry.org/" title="Point of Inquiry" rel="home"> <img width="558" height="218" data-src="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text.png" class="attachment-full size-full lazyload" alt="" decoding="async" data-srcset="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text.png 558w, http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text-300x117.png 300w" data-sizes="(max-width: 558px) 100vw, 558px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 558px; --smush-placeholder-aspect-ratio: 558/218;" /><noscript><img width="558" height="218" src="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text.png" class="attachment-full size-full" alt="" decoding="async" srcset="http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text.png 558w, http://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/30/2018/12/22164622/poi-blue-text-300x117.png 300w" sizes="(max-width: 558px) 100vw, 558px" /></noscript> </a> <div class="header-right"> <div class="listed-menu d-none d-lg-block"> <ul id="menu-main-menu" class="navbar-nav mr-auto justify-content-between"><li id="menu-item-28583" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-28583 nav-item"><a href="http://pointofinquiry.org/all-episodes/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page current_page_parent">All Episodes</a></li> <li id="menu-item-28584" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28584 nav-item"><a href="http://pointofinquiry.org/about/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">About Point of Inquiry</a></li> <li id="menu-item-29515" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29515 nav-item"><a href="http://pointofinquiry.org/subscribe/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">Subscribe</a></li> </ul> </div> <a href="https://centerforinquiry.org/donate/to/point-of-inquiry/"> <button class="btn poi-blue-button-white-text d-none d-lg-block"> Support</button> </a> <a href="http://pointofinquiry.org/?s"><i class="fa fa-search fa-lg top-search" aria-hidden="true"></i></a> <!-- Code By Jesse Couch --> <div id="nav-icon3" data-toggle="collapse" data-target="#bootstrap-basic4-topnavbar" aria-controls="bootstrap-basic4-topnavbar" aria-expanded="false" aria-label="Toggle navigation" class="d-block d-lg-none"> <span></span> <span></span> <span></span> <span></span> <!--End Code by Jesse Couch--> </div> </div> </nav> <nav class="collapse-nav d-block d-lg-none" style="top: 125px;"> <div id="bootstrap-basic4-topnavbar" class="collapse navbar-collapse"> <div class="mt-4 mb-4"> <ul id="menu-main-menu-1" class="navbar-nav mr-auto justify-content-between"><li class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-28583 nav-item"><a href="http://pointofinquiry.org/all-episodes/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page current_page_parent">All Episodes</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28584 nav-item"><a href="http://pointofinquiry.org/about/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">About Point of Inquiry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29515 nav-item"><a href="http://pointofinquiry.org/subscribe/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">Subscribe</a></li> </ul> </div> <a href="http://pointofinquiry.org/?s"><i class="fa fa-search fa-lg bottom-search" aria-hidden="true"></i></a> <a href="https://centerforinquiry.org/donate/to/point-of-inquiry/" style="text-decoration: none;"> <button class="btn donate-bottom-button"> Support</button> </a> <!-- social media icons --> <div class="social-media-icons mb-5"> <a href="https://www.facebook.com/pointofinquiry/" target="_blank"><img data-src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-new-fb-blue.png" class="header-icon mx-1 lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-new-fb-blue.png" class="header-icon mx-1" /></noscript></a> <a href="https://twitter.com/pointofinquiry" target="_blank"><img data-src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-new-tw-blue.png" class="header-icon mx-1 lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-new-tw-blue.png" class="header-icon mx-1" /></noscript></a> </div> <!-- social media icons --> </div><!--.navbar-collapse--> </nav> </div><!--.main-navigation--> </header><!--.page-header--> </div> <div class="container page-container white"> <div id="content" class="site-content row"> </div> <div id="content" class="site-content row"> <button id="sidebar-button" class="">+</button> <div id="content-wrapper" class=""> <main id="main" class="site-main dft-padding" role="main"> <article id="post-2072" class="post-2072 post type-post status-publish format-standard hentry category-uncategorized tag-law tag-science authors-dj-grothe"> <!-- end of search --> <div class="featured-outer d-block d-print-none"> <div class="featured-image blur lazyload" style="background-image:inherit" data-bg-image="url(https://cdn.centerforinquiry.org/media/poi/images/stenger.gif)"></div> <img class="ee-image lazyload" data-src="https://cdn.centerforinquiry.org/media/poi/images/stenger.gif" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="ee-image" src="https://cdn.centerforinquiry.org/media/poi/images/stenger.gif" /></noscript> </div> <div class="readability"> <header class="entry-header"> <h2 class="entry-title">Victor Stenger &#8211; God: The Failed Hypothesis</h2> <span style="color: #999 !important;">March 2, 2007</span><br /> <div class="entry-meta"> <a href="#dj-grothe">DJ Grothe</a><br /> <!-- <span class="cat-links"> <p><span class="categories-icon fas fa-th-list" title="Posted in"></span> <a href="http://pointofinquiry.org/category/uncategorized/" rel="category tag">Uncategorized</a></p> </span> --> <span class="tags-links"> <p>Topics: <span class="tags-icon fas fa-tags" title="Tagged"></span> <a href="http://pointofinquiry.org/tag/law/" rel="tag">Law</a> <a href="http://pointofinquiry.org/tag/science/" rel="tag">Science</a></p> </span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <audio controls="controls" preload="auto"> <source src="https://traffic.libsyn.com/secure/pointofinquiry/POI_2007_03_02_Victor_Stenger.mp3" type="audio/mpeg"> </audio> <div class="podcast-buttons"> </div> <p> <p>Victor Stenger is Emeritus Professor of Physics at the University of Hawaii and Adjunct Professor of Philosophy at the University of Colorado. He is also founder and president of Colorado Citizens for Science. He’s held visiting faculty positions at the University of Heidelberg in Germany, and at Oxford in the United Kingdom, and has been a visiting researcher at Rutherford Laboratory in England, the National Nuclear Physics Laboratory in Frascati, Italy, and the University of Florence in Italy. Stenger’s search career has spanned the period of great progress in elementary particle physics that ultimately led to the current standard model. He participated in experiments that helped establish the properties of strange particles, quarks, gluons, and neutrinos and has also helped pioneer the emerging fields of very high energy gamma ray and neutrino astronomy. In his last project before retiring, Vic collaborated on the experiment in Japan which showed for the first time that the neutrino has mass. He is the author of many books, including <em>Comprehensible Cosmos</em>, <em>The Unconscious Quantum</em>, <em>Not by Design</em>, <em>Has Science Found God</em>, and the recent New York times best-seller <em>God: The Failed Hypothesis: How Science Shows that God Does Not Exist</em>.</p> <p>In this talk with D.J. Grothe, Stenger explores many of the topics treated in his book, including the scientific evidence against the belief in God, where the laws of physics come from if not from a divine lawgiver, what E.S.P. research may imply about God’s existence, the morality of atheism, and whether science should even be treating the topic of God in the first place.</p> <p>Also in this episode, Austin Dacey, director of the Center for Inquiry in New York City details the upcoming Secular Islam Summit in Florida, and the growing grassroots movement of secular muslims working to advance rationalism, science, and the separation of mosque and state in the Islamic world.</p> <div class="clearfix"></div> </p> <div class="newsletter-signup"> <h4>Sign up now for Point of Inquiry updates.</h4> <p>New POI episodes and updates sent right to you. It's as easy as typing in your email. Your email isn't shared with anyone else. Just news and updates.</p> <div class="tnp tnp-subscription"><form action="https://pointofinquiry.org/?na=s" method="post"> <div class="tnp-field tnp-field-email"><input class="tnp-email" name="ne" required="" type="email" placeholder="Your email address here" /></div> <div class="tnp-lists"> <div class="d-none tnp-field tnp-field-list"><label><input class="tnp-preference" checked="checked" name="nl[]" type="checkbox" value="1" /> Point of Inquiry</label></div> </div> <div class="tnp-field tnp-field-button"><input class="btn poi-yellow-button-white-text tnp-submit" type="submit" value="SUBSCRIBE" /></div> </form></div> </div> </div><!-- .entry-content --> <footer class="entry-meta"> <div class="accordion" id="accordionTranscript"> <div class="card"> <div class="card-header" id="headingOne"> <h2 class="mb-0"> <button type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne"> Show/Hide Transcript </button> </h2> </div> <div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordionTranscript"> <div class="card-body"> <p>This is point of inquiry for Friday, March 2nd, 2007.<span class="Apple-converted-space"> </span></p> <p>Welcome to Point of inquiry, I&#8217;m DJ Grothe a point of inquiry is the radio show, the podcast of the Center for Inquiry, which is a think tank collaborating with the State University of New York at Buffalo on the new science and the public master&#8217;s degree. CFI also has branches in New York City, Tampa, Hollywood, Washington, D.C. and Toronto, Ontario, Canada. In addition to 14 other cities around the world. Every week on this show, we examine some of the basic assumptions of our society through the lens of scientific naturalism, focusing mostly on pseudoscience and the paranormal, alternative medicine or secularism in religion. We look at these three areas by drawing on CFD relationship with the leading minds of the day, including Nobel Prize winning scientists, public intellectuals, social critics and thinkers and renowned entertainers. Before we get to my discussion with Vic Stanger and his book, God The Failed Hypothesis, I want to bring on the phone. Austin Dacey, an old friend of mine who&#8217;s now heading up CFI as New York City branch. We&#8217;re putting on in St. Petersburg this weekend. He&#8217;s one of the conference organizers, an event called the Secular Islam Summit. I want to bring him on the phone so we can talk about that, because I think listeners to point of inquiry will be especially interested in this event. Austin, welcome to Point of Inquiry again.<span class="Apple-converted-space"> </span></p> <p>Hi, D.J..<span class="Apple-converted-space"> </span></p> <p>Good to be with you, Austin. This week in Point of inquiry is going to be covering the secular Islam summit. Let&#8217;s begin by you telling me what it&#8217;s all about. Why is there all this brouhaha about this conference? We&#8217;ve put on conferences everywhere and we never receive this kind of controversy.<span class="Apple-converted-space"> </span></p> <p>This conference is something that&#8217;s never happened before. Secular Islam Summit is a first of its kind international gathering of secular Muslims to discuss the history and future of reason and freedom of conscience and separation, mosque and state in Islamic societies. And it will culminate with a reading of a declaration by the delegates at a press conference on Monday afternoon at 2:00 p.m..<span class="Apple-converted-space"> </span></p> <p>Austin Secular Islam. Isn&#8217;t that kind of a contradiction in terms?<span class="Apple-converted-space"> </span></p> <p>Well, no. By a secular Muslim, we mean someone who is either a an unbeliever or an agnostic, but of a Muslim heritage or someone who is a practicing Muslim, but affirms the separation of mosque and state and freedom of conscience and human rights.<span class="Apple-converted-space"> </span></p> <p>I want to talk to you about the agenda of the conference. You&#8217;re along with many of these apostate Muslims, these dissident Muslims around the world, some of the leading thinkers in this kind of fringe part of the Islamic world. You&#8217;re putting on this conference along with them. I want to talk to you about your agenda. Aren&#8217;t these people who are with you at this conference necessarily a little Islamophobic? They&#8217;re anti-Muslim because they&#8217;re formally Muslim. Isn&#8217;t this just a bunch of Islamophobic scholars getting together to talk about why they have problems with Islam?<span class="Apple-converted-space"> </span></p> <p>Well, first of all, the conference is being sponsored by the Center for Inquiry, not me. And there are many people involved and many outstanding delegates. As you mentioned, people like your shot Manji, the feminist author of The Trouble with Islam Today, Wolf, a full turn, the Syrian American psychiatrist who became an international sensation last year when she engaged in a televised debate on Al Jazeera with the sheikh about secularism and human rights, which has been downloaded over a million times on the Internet. Right.<span class="Apple-converted-space"> </span></p> <p>That is breathtaking. And we&#8217;ll have a clip of that on point of inquiry dot org.<span class="Apple-converted-space"> </span></p> <p>It&#8217;s poetry. Nani Darwish, Egyptian born woman who started an organization called Arabs for Israel, a man named Tofiq Hameed who narrowly escaped being drawn into a life of terrorism with an al-Qaida affiliate organization and who now preaches a tolerant version of Islam. We have a distinguished member of the Iraqi parliament who will be giving an address and of course, then for inquiry&#8217;s own in the war. So people are coming from Iran, Iraq, Egypt, Jordan, Syria, Pakistan, Bangladesh, Indonesia and elsewhere, many of whom are Muslims themselves. So it would it would be absurd to say that they are Islam phobic. But on the whole idea of Islamophobia. Let me just quote from the draft of the declaration that the delegates are preparing. They say we see no colonialism, racism or so-called Islamophobia in submitting Islamic practices to criticism or condemnation when they violate human reason or rights. The condescension and contempt shown by those who regard Muslims as beneath the ethical and intellectual stand. Applied to others. That&#8217;s what they have to say about the charge of Islamophobia.<span class="Apple-converted-space"> </span></p> <p>So no Islamophobia, but definite criticism of Islam as it&#8217;s practiced by many in the world today.<span class="Apple-converted-space"> </span></p> <p>Absolutely. Absolutely. And unabashed, they they stand for the absolute right of freedom, of rational scientific inquiry into their origins and sources of Islam and the moral foundations of the faith. Respect for belief does not mean immunity from criticism. I would argue it. It entails criticism when when serious claims made in public affairs, you know, infringe on other people.<span class="Apple-converted-space"> </span></p> <p>Austin, I want to talk about something that I find kind of puzzling on this subject of Islamophobia. Many progressive thinkers on the American political left, they seem very pro Muslim and they accuse any who criticize Islam and even politically extremist Islam as being Islamophobic. Many of these people on the left see the current political religious problems coming from extremist Islam as a direct result of not Islam itself, but of failed American foreign policy, conservative foreign policy. In some sense, they kind of blame America for this hatred of the West that&#8217;s so rampant in parts of the Muslim world. Am I reading that right? Is there kind of this apology for Islam on the American political left?<span class="Apple-converted-space"> </span></p> <p>Yes, there is a there there&#8217;s a strange and I think very, very unfortunate alliance between just American, but also the European left and and Islamism. And I can tell you that as a proud liberal and the son of new left civil rights activists, it&#8217;s deeply troubling to me personally that opposing Islamism has come to be seen as a neo conservative issue. Maybe this is do as Paul Berman and Peter Beinart have argued to a kind of Western liberal fixation on partizan domestic policy struggles or a reflexive aversion to the exercise of American hard power abroad, or maybe as if new work is shed. Monti and others contend it&#8217;s a kind of misplaced multicultural sympathy. And all I can tell you is that it&#8217;s it&#8217;s not shared by these. Second, the Muslims freedom of conscience is a bipartisan issue.<span class="Apple-converted-space"> </span></p> <p>Women&#8217;s rights are a bipartisan issue, even if these issues you are addressing at the conference are bipartisan. You have to admit that many of the conference attendees, or at least some people on the dais are conservatives, part of the new conservative movement. What do you say to those who charge you and the other conference organizers, even the Center for Inquiry, for just being part of the hidden agenda of the far right?<span class="Apple-converted-space"> </span></p> <p>First of all, I&#8217;d say it is true that some of the people involved in in the secular Islam summit would be considered conservative or neo conservative by the categories of American domestic politics. But we make no apology for that. And if if we&#8217;re saddened at all that they&#8217;re not joined by equally notable and and informed liberals, where are the liberals on this issue? Where is the National Organization for Women on this issue? I would ask my liberal friends, which world do you prefer? One in which Western political, military and intelligence leaders are more ignorant about secular Muslims or more informed. That&#8217;s why we think they should be at the table. The participants in the Secular Islam summit, many of whom have bravely resisted Islam&#8217;s totalitarian expressions in Iran, Iraq, Egypt, Pakistan and elsewhere. They have nothing to apologize for. The shame is on those Western liberals who do not stand with them, who allow their hatred of Bush to strangle their solidarity with freedom, yearning people around the world.<span class="Apple-converted-space"> </span></p> <p>Well, you&#8217;ve convinced me, even if you and I have stayed up late at night, many times arguing over politics, you&#8217;re on the far left, kind of a social Democrat, maybe a Democratic socialist. I&#8217;m a little right of center still. You&#8217;re arguing that people of all political persuasions can come together in their criticism and critical examination of totalitarian, mystic Islam around the world. You&#8217;re saying that this issue should be one that we&#8217;re all interested in, but no one should take my word for it or the center for increased or.<span class="Apple-converted-space"> </span></p> <p>This is really a grassroots effort. It began in conversations that started at the Council for Secular Humanism conference towards a new enlightenment in upstate New York. Couple of years ago, and and there&#8217;s a Web site people can go to if they want to get.<span class="Apple-converted-space"> </span></p> <p>More information about the secular Islam Outreach CFI is investigation of of these topics.<span class="Apple-converted-space"> </span></p> <p>Yes, it&#8217;s secular Islam dot org.<span class="Apple-converted-space"> </span></p> <p>Austin, thanks for joining me on Point of inquiry Will. We&#8217;ll devote next week&#8217;s show to the conference that we&#8217;re covering this weekend. And you helped introduce it were before you go, just touch on how much media attention is being given this conference. You&#8217;re out. You actually had to build a media booth because a couple news networks are actually going to be broadcasting from this event.<span class="Apple-converted-space"> </span></p> <p>Yeah, that&#8217;s right. There&#8217;s a crew from CNN Headline News who will be broadcasting live from the event on Monday. We have journalists coming from the Associated Press, from U.S. World and News Report. I just read a story online from Al Arabiya in Arabic. Well, I can read it in Arabic, but I&#8217;m told it&#8217;s very favorable. We had a story come out yesterday by Kuwait News Agency that was favorite, very favorable.<span class="Apple-converted-space"> </span></p> <p>Austin, thanks for joining me on Point of Inquiry.<span class="Apple-converted-space"> </span></p> <p>Thank you, DJ Grothe.<span class="Apple-converted-space"> </span></p> <p>The world is under assault today by religious extremists to invoke their particular notion of God to try and control what others think can do. One magazine is dedicated to keeping you up to date with analysis that cuts through the noise and the surprising courage to pair politically incorrect. That magazine is Free Inquiry, the world&#8217;s leading journal of secular humanist opinion and commentary. Regular contributors include Richard Dawkins, Wendy Kaminer, Christopher Hitchens, Peter Singer and Sam Harris. Their views are reasoned, thought provoking and to some, unpardonable, infuriating. Subscribe to free inquiry today. One year, six controversial issues for 1995. Call one 800 four five eight one three six six or visit us on the Web at Secular Humanism, Dawg.<span class="Apple-converted-space"> </span></p> <p>I&#8217;m pleased to have this week&#8217;s guest on Point of Inquiry, Victor Stanger. He&#8217;s Emeritus Professor of physics at the University of Hawaii and adjunct professor of philosophy at the University of Colorado. He&#8217;s also founder and president of the Colorado Citizens for Science. He&#8217;s held visiting faculty positions at University of Heidelberg in Germany and at Oxford University and has been a visiting researcher at the Rutherford Laboratory in England. Also the National in Nuclear Physics Laboratory in Frascati, Italy, and also at the University of Florence in Italy. Stinger&#8217;s research career has spanned this period of great progress in elementary particle physics. This period that ultimately led to the current standard model of elementary particle physics. If you are a physicist, you might know what I&#8217;m talking about because I&#8217;m not sure that I do. Stanger has participated in the experiments that helped establish the properties of strange particles of quarks, gluons and neutrinos. And he&#8217;s also helped pioneer the emerging fields of very high energy gamma ray and neutrino astronomy. In his last project before he retired, Vic collaborated on the experiment in Japan, which showed for the first time that the neutrino has mass. He&#8217;s the author of many books, including The Comprehensible Cosmos, The Unconscious Quantum Not By Design and Has Science Found God. He joins me on point of inquiry today to talk about his recent bestseller, which is this week on The New York Times Best Sellers List God, The Failed Hypothesis How Science Shows That God does not exist. Welcome to Point of Inquiry, Victor Stanger.<span class="Apple-converted-space"> </span></p> <p>Well, I&#8217;m happy to be here.<span class="Apple-converted-space"> </span></p> <p>Vic, you&#8217;ve been around the humanist the skeptics movement for a while, and it&#8217;s been my pleasure. Bump into you couple cities out there as we travel. You&#8217;ve written mostly on science issues, but this book is different. This book is, for lack of another way of describing it. It&#8217;s an A.I. God book. It&#8217;s created this big stir. It&#8217;s being published kind of on the heels of these other big atheist books by Richard Dawkins and Sam Harris. Let&#8217;s start our back and forth by exploring how your book is different than these other titles.<span class="Apple-converted-space"> </span></p> <p>OK. I would say, first of all, that all my books are science oriented. I mean, even in this book is perhaps the only one out there that questions the existence of God from a proper scientific basis. Right off the bat, I think that&#8217;s the unique thing about it.<span class="Apple-converted-space"> </span></p> <p>It&#8217;s not just the polemic. I hope it&#8217;s not a polemic at all against religion. It&#8217;s somewhat of criticism of religious people thinking, which I think these are the books also are primarily concerned with. But it&#8217;s an attempt to just look at the evidence and see what it has to say about the question of God.<span class="Apple-converted-space"> </span></p> <p>So you&#8217;re telling me you&#8217;re exploring this from a dispassionate perspective. But how can you defend that? How can you say this isn&#8217;t a polemic when you&#8217;re going against the central belief of most people on the planet? It seems like you, even as a reputable scientist, you&#8217;re spending your energy sticking it to all these God fearing people out there.<span class="Apple-converted-space"> </span></p> <p>Well, look, I&#8217;m just interested in what the data has to say, and believe me, I tried to say this several times throughout the book that I&#8217;m not dogmatic about this and I think most scientists are. And of course, you occasionally run into a dogmatic scientist.<span class="Apple-converted-space"> </span></p> <p>But if the data were there, I would have to believe it. Let me give you an example right off the top, because there&#8217;s people who often say that science can say nothing about God.<span class="Apple-converted-space"> </span></p> <p>So you&#8217;re not being polemical, but a lot of scientists agree with you, at least the position they&#8217;re atheist or agnostic. The majority of the members of the National Academy of Sciences, the leading scientists in America, are atheistic, but they&#8217;re not out there writing books against this cherished belief, even if they lack of belief in God, even if they&#8217;re atheist or agnostic. They argue that scientists shouldn&#8217;t be addressing these questions because the reasoning goes that we don&#8217;t know everything. So we certainly can&#8217;t definitively claim there is no God. But contrary to that line of thinking. You&#8217;ve written a book about how science shows that God does not exist. Aren&#8217;t you making science do more than what many other scientists say science can do?<span class="Apple-converted-space"> </span></p> <p>Well, I&#8217;m doing well. I think science can do.<span class="Apple-converted-space"> </span></p> <p>Namely, it can examine the empirical evidence for hypotheses. And the God hypothesis is every bit as much a scientific hypothesis because it has bearing on what we observe in the world. It&#8217;s every bit as much as some hypotheses concerning elementary particles, which was going to fuel the research. So that&#8217;s the approach. And I don&#8217;t claim that every conceivable kind of God can be ruled out.<span class="Apple-converted-space"> </span></p> <p>But the God they work with, which I called the God with a capital G, the God that really most people worship the God of Judaism, Christianity and Islam is a God that plays such an important role in the universe, in the life of humans, affecting everything that goes on every thought, every every atom that moves from here in a molecule on earth or out in some far-off galaxy.<span class="Apple-converted-space"> </span></p> <p>God is there having something to do with all of that. And that that makes an eminently detectable one, they claim, is that I go through in the book a number of kinds of observations that could lead to the discovery of God. And as I said, if they were to come out positive, then I would have to believe. I think most branches would become believers. We&#8217;re not opposing God out of any refusal to look at all the possibilities. Quite the contrary. We&#8217;re looking at all possibilities. And this is what we&#8217;re concluding still on this point.<span class="Apple-converted-space"> </span></p> <p>Veck, before we get into the book, specifically religious claims, faith claims about God, aren&#8217;t they by definition talking about things that science cannot measure, their claims about the immaterial world, not the material world. And science has to put on its blinders and talk only about the material world. Again, it seems like you&#8217;re making science tread on religion&#8217;s turf. And many great thinkers, Stephen Jay Gould, others say that science and religion for this reason have different domains and that one necessarily cannot address the other. You are making science get into that territory nonetheless.<span class="Apple-converted-space"> </span></p> <p>Well, it&#8217;s a get a question of the two kinds of naturalism that are defined by philosopher anthers methodological naturalism, which is basically just assuming natural explanations for everything. You&#8217;re going through the observational process with material objects, with material instruments and so on. And the other thing is metaphysical naturalism. And I think this is the notion that the universes matter and nothing else and the two are not necessarily the same thing. I think you can use methodological naturalism to study not only material, but a physics metaphysics of of material systems, but even the metaphysics of the immaterial, because despite what Stephen Jay Gould said, there is a lot of people who have criticized what Goulding&#8217;s had to say because he basically has tried to redefine religion is moral philosophy for good purposes.<span class="Apple-converted-space"> </span></p> <p>His heart was in the right place. He was just trying to do that to end the conflict between religion. His religion takes care of this and science takes care that we have these two non overlapping magisterium.<span class="Apple-converted-space"> </span></p> <p>But in fact, that&#8217;s what religion is. Religion isn&#8217;t just moral philosophy. Religion bears on everything that we we do in the physical universe. And so, therefore, science has a role to play at that point where it interacts with the physical world. I&#8217;m not claiming that we can observe the unobservable, just that we can observe the observable and then interpret that in terms of of various theories. And there&#8217;s nothing that precludes the supernatural as a plausible explanation for certain material events.<span class="Apple-converted-space"> </span></p> <p>So if science should get involved in looking at these claims, do you think that other scientists should become as vocal, as outspoken as you are when it comes to the God hypothesis?<span class="Apple-converted-space"> </span></p> <p>Yes. As you started to allude to these other books that are out there. This book is actually coming out fortuitously at a time when enthusiasm is kind of coming out of the closet a bit and asserting itself big, a little bit more aggressive in its criticism of religion, not only religious beliefs, but some of the actions that religion is taking of the religious right in this country gains more and more influence. The Bush administration demonstrates its contempt with science using faith based policymaking, which a lot of us see is very dangerous to the future of society and harmful to individuals affecting human lives, which is the sum of their stands on stem cell research and abortion, sex education and thought. Now, a book is not about that. I allude to it a little bit, but my book attempts to go to the heart of the matter, which is really does not exist. Is there any reason to believe that God exists? Is there any evidence one way or the other?<span class="Apple-converted-space"> </span></p> <p>And if there isn&#8217;t, then some of these these arguments that atheists are making now are that much stronger. That morality, for example, does not come from God. It comes from humans on evolution and society. So these are issues that are coming out now in my book is kind of a unique part of that whole.<span class="Apple-converted-space"> </span></p> <p>Will you Richard Dawkins said that he learned an enormous amount from your splendid book. I want to talk about some of the arguments that you use in the book. Well, you talk about earlier in the book what you called the illusion of design. The universe looks like it&#8217;s designed, but that&#8217;s an illusion. You find absolutely no evidence for a designer.<span class="Apple-converted-space"> </span></p> <p>Well. It looks like it&#8217;s designed only to the untutored viewer, someone who is not aware of the details of biological France, for example, will naturally tend to think that things look too, too complicated to possibly be explained.<span class="Apple-converted-space"> </span></p> <p>In fact, the argument from design is probably the single most common scientific argument, let&#8217;s call it, that&#8217;s given by people for or their belief in God. They look at the world around them and they say, how could this possibly have happened naturally? Well, that was once a good argument. I mean, you remember an 18 oh two. There was a British clergyman named William Paley who wrote a couple of books that were very effective. I remember reading that Darwin was extremely influenced by paisleys writing. In fact, when he went to Cambridge, he occupied the same room that Paley had occupied. And Paley&#8217;s writings, especially the book Natural Theology, were part of the syllabus at Cambridge at that time. And he said he was very delighted with it. He was delighted with his arguments as he was with with Euclid. They seemed to be so solid that it was a darker starlet himself that showed way Paley was was wrong, where there was a way that you could explain the complexity of life. And that, of course, was was evolution by natural selection. And so, you know, I think to go back again with Paley&#8217;s argument, he he talks about walking out in the heat and finding both Iraq and watch. And he says, well, your rock is obviously a natural object. But look at his watch. You could see that artifact. Now you look at the human body and you see all these complex systems like the I like the brain, like the are.<span class="Apple-converted-space"> </span></p> <p>And these are to him artifacts as well. And they said that that argument of Darwin came along with the evolutionary theory. And now what we know and we look more closely at things like the heart, things like the eye, and they look very much like a Rube Goldberg cobbled together devices that evolution explains much better than in any kind of notion of an intelligent designer.<span class="Apple-converted-space"> </span></p> <p>So if you look at the universe, in other words, if you look at living things, it doesn&#8217;t look Disneyland. In fact, if you look closely enough, it looks it looks exactly as it should look if it wasn&#8217;t designed.<span class="Apple-converted-space"> </span></p> <p>So even if evolution is a compelling explanation for the complexity of life, it doesn&#8217;t mean that God didn&#8217;t wind everything up and let it go, that God isn&#8217;t using evolution. What I&#8217;m getting at is even if there&#8217;s no evidence for a designer, it doesn&#8217;t mean that he does not exist. Absence of evidence isn&#8217;t the same thing as evidence of absence.<span class="Apple-converted-space"> </span></p> <p>Right. That&#8217;s why I don&#8217;t use that argument. Absence of evidence is evidence for absence. This is not an absence of evidence or argument. It&#8217;s an evidence argument. It&#8217;s an evidence against argument.<span class="Apple-converted-space"> </span></p> <p>Namely, you look at the data in the light of the hypothesis of God. And I claim that, sure, you can always argue your way out of these things. But the arguments pile up one after one, and not just intelligent design, but everything else. You say you hypothesize a God that has this attribute that he design the universe. Well, there should be evidence for design to design the universe. It should be evidence for it. We get into the question of whether he&#8217;s hiding it from us. That&#8217;s another issue. I talk about the very end of the book. Hiddenness of God argument.<span class="Apple-converted-space"> </span></p> <p>But but the God that both people worship, the God that certainly people think there&#8217;s evidence for and they use the argument to to design for that purpose. If you look more closely, you find the evidence that points the opposite way at points against the existence of a God that that created.<span class="Apple-converted-space"> </span></p> <p>The universe, we were talking about this before, it&#8217;s still throwing me for a loop, how science can even talk about a world beyond matter. Shouldn&#8217;t science just be sticking to things that there&#8217;s evidence for rather than concluding there is no God just because evolution is a great explanation for the complexity of life?<span class="Apple-converted-space"> </span></p> <p>Yeah. Well, let me give you. A simple example example shows that the science is perfectly capable of detecting something supernatural. Here&#8217;s the example. Suppose that you did very carefully controlled experiments, good experiments and having some good experiments, incidentally, on this. Looking at the evidence that prayer can through the thick. And you do some very good experiments, double blind, and so when you meet all all the standards of good science and you find those, you would define hypothetically. Now, this is not the case. This is a hypothetical example. Suppose you were to find that Catholic prayers, really? They really helped heal people, whereas all other prayers didn&#8217;t work. Jewish prayers didn&#8217;t work. Muslim peers and we&#8217;re Protestant prayers Hindu. Some of these old ones were only Catholic. Prayers were. But how could you even conceive of a possible natural explanation for that? I can&#8217;t think of any natural explanation for it. Only Catholic prayers working with it would be strong evidence for the existence of God and specifically the one that the Catholic worship. They had it right. They after all. I was raised Catholic and I saw this.<span class="Apple-converted-space"> </span></p> <p>I go to the first Catholic Church I could find. Go to confession to make. I&#8217;m ready. I&#8217;m ready for that. I&#8217;m willing to do this. But of course, the facts are that there have been some good experiments recently which I talked about in the book, experiments done by reputable scientists in reputable institutions like Duke University, like Harvard, like Mayo Clinic, and these scientists who offer the most part believers.<span class="Apple-converted-space"> </span></p> <p>I know a few of them and I know what they wanted to see.<span class="Apple-converted-space"> </span></p> <p>And they wanted to see prayers healing the sick. But there are good scientists. And they took the evidence as it was presented to them and they concluded that they could see no evidence that prayer of any help. So I interpret that.<span class="Apple-converted-space"> </span></p> <p>You see, I turned that around, I assure you. And apologists can now say, wow, God didn&#8217;t want to be tested in this way.<span class="Apple-converted-space"> </span></p> <p>So he could have just could have ignored that. Sure. But the simplest explanation and an infidelity.<span class="Apple-converted-space"> </span></p> <p>I mean, I don&#8217;t claim that.<span class="Apple-converted-space"> </span></p> <p>I&#8217;m proving that God doesn&#8217;t exist in the sense of a logical or a mathematical proof.<span class="Apple-converted-space"> </span></p> <p>I&#8217;m using proof that I can&#8217;t avoid the word proof. But generally, it would be more like proof in a courtroom beyond a reasonable doubt.<span class="Apple-converted-space"> </span></p> <p>So I claim that beyond a reasonable doubt, this data would see that a God that answers prayers doesn&#8217;t exist. There would be evidence if God answered prayers, there would be evidence for it in any important way. There would be evidence for it.<span class="Apple-converted-space"> </span></p> <p>You treat not only the efficacy of prayer in your book, but also talk about some of these other historic debates, the mind body problem, how discoveries about the brain have diminished our view of the soul. You also explore research into the paranormal and how this might inform this debate about God&#8217;s existence from a scientific point of view. Talk to me about E.S.P research and what it has to say about the search for God. And, you know, even if there&#8217;s no evidence whatsoever for E.S.P, it doesn&#8217;t follow that then God doesn&#8217;t exist. You know, God&#8217;s not something that you can measure in in a laboratory like you can as someone&#8217;s precognitive abilities with a rine deck of cards.<span class="Apple-converted-space"> </span></p> <p>Yeah, I mean, I&#8217;ve I&#8217;ve written on this subject in other books. This is actually my seventh book that addresses the these kinds of issues, the issues of science at the interface between the paranormal and religion and so on. And the point here is that one of the attributes of the God, the capital G that I&#8217;m talking about here, the traditional God of Judeo Christian, Islamic, religious, but maybe others as well. One of the attributes of that God would be that he is given humans special powers, a soul, some some supernatural element. And one way that that would manifest itself would be in these kinds of phenomena, such as you said, through perception. Now, I know the people that work in the field say, well, maybe it&#8217;s physical, it doesn&#8217;t have to be spiritual, OK? There&#8217;s all these caveats you have to draw. But certainly it would be one of the ways that one might observe evidence for for God would be to see some kind of phenomena that defy all natural explanations. And these phenomena be associated with humans. But in their in their thinking processes, mind over matter, reading of their minds and so on. And this, of course, has been a belief, long standing. And 150 years ago now, scientists began to take a look at the so-called psychic phenomena in the laboratory, tried to do controlled experiments. Well, it turned out the early experiments were very poor. And what they got better and better was the experiments done by Joseph Ryan and Duke University of Thirty&#8217;s that really made an honest attempt to find these phenomena. Now, he thought he had. He had, but none of the evidence stood up. One 150 years later. We have a still being made about these phenomena. But in any other field that I could imagine, if you had that many negative results for that many years and nothing really convincing, you&#8217;d have to conclude that the phenomenon didn&#8217;t exist.<span class="Apple-converted-space"> </span></p> <p>People are really beating a dead horse and they keep claiming that there&#8217;s something there when they certainly haven&#8217;t convinced the consensus of the scientific community that there&#8217;s there&#8217;s any kind of psychic phenomena out there.<span class="Apple-converted-space"> </span></p> <p>I always find it interesting that J.B. Ryan, this, you know, the father of VSP research at Duke, you mentioned that he started out at University of Chicago studying theology, started out in the seminary and talk about motivation to prove that life lasts after death. Then he went into this research.<span class="Apple-converted-space"> </span></p> <p>And that was characteristic of a lot of the people who preceded him.<span class="Apple-converted-space"> </span></p> <p>Some very good scientists back in the 19th century who thought they had discovered the so-called psychic force. But know, I don&#8217;t ever get psychological. But you look at them, they also had very strong religious feelings and they seemed like that was what they were. Their motivation was to try to find evidence. After all, if you go back a hundred years. When people were first looking at things like what they called wireless telegraphy, why was it wireless telepathy possible? Is it seemed reasonable? And let me say again that at one time, a lot of these arguments for God forces spiritual world. Well, good arguments. I mentioned Paley&#8217;s argument with a good argument one time until until Darwin came along and some of the arguments that we haven&#8217;t gotten into yet concerning cosmology were good arguments up until early in the 20th century. And these arguments on E.S.P were good arguments at one point because it seemed like people did have these powers and turned out that they were mostly being tricked by magicians and other charlatans.<span class="Apple-converted-space"> </span></p> <p>And that, of course, has a long history of that.<span class="Apple-converted-space"> </span></p> <p>You just mentioned cosmology. Some of the scientific lines of evidence for God that you refute in the book where you talk about miracles. We already talked about design. What are some of these lines of evidence that you are gunning for?<span class="Apple-converted-space"> </span></p> <p>Well, let&#8217;s go back again to the 19th century. And what level of physics knowledge was at that time? Well, we looked at the universe. Do you ever seem to be a firmament, as it is described in the Bible firmament, of more or less fixed stars? They knew that the earth was moving when the sun and all and so on. But there seemed to be justice to the firmament out there. And the question was, where did it come from and where did all this matter come from? Where did the at that time? It was a law of conservation of matter matter couldn&#8217;t be created or destroyed. Well, then we had in the 20th century with Einstein&#8217;s is equal to M.C. Squared. We find that matter can be created and destroyed by energy. But we still had energy conservation. So that didn&#8217;t really solve a theological problem because you see, where did the energy come from? Because you needed the energy to create the matter. Well, it turns out that modern cosmology has discovered that the total energy of the universe is zero. That there is a balance sheet, an exact balance. Very accurately measured. No exact balance between the positive energy, those associated with matter, the rest mass and the kinetic energy. Negative energy that is associated with gravity. That these exactly balance. It will be like tossing an object up in the air. It just the escape velocity of the earth. And that object would have zero energy. That&#8217;s how you calculate the escape velocity. Calculate the velocity for which the energy is zero, where the kinetic energy and the gravitational potential energy. Exactly. Cancel in the universe just seems to be that way, that there was no. Energy needed to create the universe. So that gets rid of that argument, that argument that the violation of energy conservation was necessary. Well, it wasn&#8217;t. So that&#8217;s that&#8217;s one argument.<span class="Apple-converted-space"> </span></p> <p>Veck, you just kind of blew my mind when you said no. And I&#8217;m not a physicist. Like, you&#8217;re kind of talking above my head right now. But what if there needed to be no energy for the creation of the universe? Did you just say, yeah, because.<span class="Apple-converted-space"> </span></p> <p>Because energy has both positive and negative components. And these exactly. Kinsel. So that when the universe appeared, it appeared with zero energy within some small quantum area.<span class="Apple-converted-space"> </span></p> <p>We were all get off the quantum mechanics from quantum mechanics.<span class="Apple-converted-space"> </span></p> <p>Small ball fluctuation. So that can get pretty technical. And in fact, in my previous book that I wrote, it just came out last year, comprehensible, caused those that go into these sorts of issues in quantitative detail and mathematical appendices and so on that are not readable by the general public, maybe, but certainly readable by anybody with sufficient math background, which is the undergraduate level.<span class="Apple-converted-space"> </span></p> <p>So I&#8217;d like to let our listeners know that you can purchase a copy of the comprehensible Cosmos and has science found God and also God, the failed hypothesis through our website point of inquiry dot org. I don&#8217;t ordinarily do this, but I do want to commend this book, God, The Failed Hypothesis to our listeners. If there&#8217;s one book you get this year on this topic, you need to pick up this book by a few, pass it around, do some proselytizing of your own, maybe. Vic, you&#8217;re just talking about all these laws of the universe. You&#8217;re talking physics. Where do these laws of physics come from? There are these laws, don&#8217;t they demand that there be a law giver?<span class="Apple-converted-space"> </span></p> <p>Yes, you see, that is what motivated me to write the comprehensible cause is because the subtitle of that book is Where Do the Laws of Physics Come From? Exactly that question. And there&#8217;s a related question to all this is how could something come from nothing? And I attempt to answer that as well. In the new book, you don&#8217;t have to read the previous book to get the basic idea. I try to make all my books a complete and self-contained, but you can get the basic idea from from what I&#8217;ve written in this book. And that is this is something that most physicists don&#8217;t really think about. And so if I say that it&#8217;s a kind of a new idea, it doesn&#8217;t mean that it&#8217;s new physics.<span class="Apple-converted-space"> </span></p> <p>It&#8217;s just another way of looking at the physics that has come along in the last century and what we&#8217;ve discovered from a lifetime and really began all this again, although it goes back to Computer Case and Galileo and Newton, there&#8217;s a steady thread here, and that is that the law is the thing that we call the laws of physics are not. Some commandments handed down from above that control the behavior of matter. What they are or mathematical rules and models that physicists have invented to describe the data.<span class="Apple-converted-space"> </span></p> <p>And the first rule that they&#8217;ve discovered over the years, Jim Underdown discovered or invented, discovered, they&#8217;ve discovered a rule that works. Let me put it this way, and that is that if you&#8217;re going to describe observations. You can&#8217;t have those your descriptions pinned on any particular point of view, because then they become subjective. They have to be objective. And I call this point of view and variance, namely when you write down your mathematical equations, they can&#8217;t depend on any particular time and a particular space station position or direction and any number of other things that we we put into the models. And there was a people, a mathematician in Emmy Nursa who back in 1916 discovered a very important theorem. And that was that if you had any theory. That did not depend on. Spatial position. Spatial direction or particular point in time. Then that theory would automatically have the laws. The thing that we call the laws of conservation, of energy, of momentum and angular momentum. Most fundamental, most important laws of physics are just natural. They just come out of the fact that the universe has no special position, has no special with no special point in the universe. A full time. And this principle was generalize further in the 20th century to something called the Gaige principle and was behind almost all of the major developments this way. A century physics and the Gaige principle is essentially also this kind of principle. It&#8217;s a principle in which you can&#8217;t write down your equations in a way that single out a particular point of view. And then when you do that, it turns out that practically every law of physics just falls out.<span class="Apple-converted-space"> </span></p> <p>There are a few that don&#8217;t quite. And you can understand those as being sort of random fluctuations in the current by means of random fluctuations in the early universe. This is pretty deep. I realize that and pretty pretty fast moving.<span class="Apple-converted-space"> </span></p> <p>But let me just say that we have no reason. To think that the laws of physics came from any external source. In fact, using the same language I use over and over again in this book, the universe looks just as it could be expected to look. If it came from nothing.<span class="Apple-converted-space"> </span></p> <p>The laws of physics, of the laws of the void and laws of emptiness, we would all have these symmetries that would lead to these laws.<span class="Apple-converted-space"> </span></p> <p>So these laws do not demand a law giver, right.<span class="Apple-converted-space"> </span></p> <p>In fact, they look as they should should. Look, if there wasn&#8217;t a law giver. If you had a law giver, you would expect some violations of these laws. But you don&#8217;t have to give that. That&#8217;s what a miracle is, a violation of the law.<span class="Apple-converted-space"> </span></p> <p>One of my favorite sections of your book is the one you titled The Uncongenial Universe, that it just doesn&#8217;t seem too hospitable to us.<span class="Apple-converted-space"> </span></p> <p>Yeah, I mean, it&#8217;s it&#8217;s incredible that people think that the universe is somehow so special and specially designed for humans. When you look at it again, it doesn&#8217;t look that way at all. Look, we can only live on this little planet. We can&#8217;t live any place else. The chances of us ever moving off this planet and living on other planets, as they do in the space epic is absolutely remote.<span class="Apple-converted-space"> </span></p> <p>But that line of argument is used to say how unique and specially designed our planet is. It&#8217;s fits us perfectly. We can&#8217;t conceive of living anywhere else in the universe because this is our home made specially tailored for us.<span class="Apple-converted-space"> </span></p> <p>Why would God just put us off in the far corner if we were so important? Why would he even make the universe that required a finely tuned earth for us live? And why couldn&#8217;t we leave every place? Why couldn&#8217;t we live in a vacuum?<span class="Apple-converted-space"> </span></p> <p>Well, see, you got me there. But I don&#8217;t need to know why God did what he did, just that he did it. And, you know, the line of argument goes that this universe is and especially this planet is perfectly made for us. If if the globe were rotating any faster, there&#8217;d be an inhospitable weather system any slower and there&#8217;d be drought and famine. Life wouldn&#8217;t have taken off in the first place. But you&#8217;re arguing against this fine tuned universe.<span class="Apple-converted-space"> </span></p> <p>So it&#8217;s it&#8217;s a question of which came first, the chicken or the egg. Let me give you an example. Suppose that you know that the reason that our eyes are sensitive to a certain band of light and this is a very narrow band of light. We&#8217;re basically blind. We are blind. We can&#8217;t see ultraviolet. We can&#8217;t see infrared. We can see x rays. We can see the vast amount of the electromagnetic spectrum is invisible to us. We have this little narrow region we call the visible region that are either sensitive to and it happens to be the region. That&#8217;s right at the center of the sun spectrum. And how also happens to be the region where there&#8217;s good atmosphere transmission. So the kind of reasoning that you&#8217;re talking about would say that that the sun was made in the Earth&#8217;s atmosphere was designed so there would be light, a light in the spectral region.<span class="Apple-converted-space"> </span></p> <p>That happens to be that of our eyes, that our eyes. In other words, were created to be sensitive to the spectral region. And then God created the sun and the earth to be sensitive. Well, that&#8217;s obviously silly reasoning.<span class="Apple-converted-space"> </span></p> <p>Her eyes are sensitive to that region because we evolved on this planet with the sun providing light. This particular narrow region of the electromagnetic spectrum. In other words, it&#8217;s thought that the universe is fine tuned. To humanity. Humanity is fine tuned to the universe.<span class="Apple-converted-space"> </span></p> <p>We evolved under the conditions that were here. And if the conditions were different, as they might be on some other planets someplace. I&#8217;m not saying that life is impossible or even complex. Why? It was I think that primitive life is probably very widely spread throughout the universe and complex life is probably less widely spread. But still, there could be billions and billions of planets out there with some kind of complex life on. But it would be could be totally different from ours. And then we can imagine all the possibilities of all the universe. This is examples of people give. They say that the constants of physics are fine tuned for life. And I have examined these in detail in a number of books. Other things I&#8217;ve written and shown that this is not the case at all, that you can you can vary the constants of their other authors. Incidentally, I wanna say I&#8217;m the only one who&#8217;s right written on this. I give references to other detailed work by physicists who have conjured up other kinds of universes with different constants and shown that in most cases you still can get conditions for some kind of complexity to evolve. And that&#8217;s the other thing about this whole design argument is a belief that. In order to get complexity, you have to start with complexity in a lot of people just don&#8217;t realize that complexity can evolve very naturally out of simplicity. There are many examples of that computer simulations as well as our observations of chemistry laboratory. So you can get complex molecules forming out of simpler molecules naturally without without any chemist going in there and making it happen. It just happens spontaneously. There are many examples of this in science, how a complex system can evolve quite naturally from a more simpler one.<span class="Apple-converted-space"> </span></p> <p>There are a lot of other things I want to talk to you about, Veck. I want to talk about religious experience. I want to talk about values, the meaning of life. But we&#8217;re running short on time, so we&#8217;ll have to have you back on the show. I want to finish up talking about religion and its usefulness. Religion works for so many people on the planet. It gives them meaning, gives them reason to get out of bed in the morning, a reason to be nice to others when when they don&#8217;t feel like being nice. Isn&#8217;t there a risk that if a ton of people read your book and are persuaded by it, that the world&#8217;s going to be even more messed up? I mean, aren&#8217;t we going to be worse off if you convince the masses that there&#8217;s no reason to believe in a divine law giver who will punish them if they&#8217;re bad or reward them if you&#8217;re good? If there is no God and there is no ultimate purpose to life, doesn&#8217;t that kind of undercut some of the stuff we&#8217;re trying to get done in society?<span class="Apple-converted-space"> </span></p> <p>Well, you know, that&#8217;s that&#8217;s kind of a widespread belief. But all we have to do is look at the facts.<span class="Apple-converted-space"> </span></p> <p>If you look at questions such as family abuse.<span class="Apple-converted-space"> </span></p> <p>If God was the source of morality and atheists had no morals, then there would be more family abuse among atheists than among Christians. In fact, the opposite is the case. In fact, the connection, the more fundamentalist the family, the more likely there is to be child abuse, wife abuse.<span class="Apple-converted-space"> </span></p> <p>Divorces is higher among these these groups. And there are examples like this all over the place. I certainly don&#8217;t think that the comfort of Islam. Did the. The 9/11 hijackers much good. Frankly, I don&#8217;t think they got their 72 virgins and these other books that we&#8217;ve been talking about. I don&#8217;t get into this much. In my book. But I do end up with a chapter called The Godless Universe. Where where am I going to guess? I call it the life of a God.<span class="Apple-converted-space"> </span></p> <p>We are living in the God listening to that, that there&#8217;s a great relief when you&#8217;re no longer attached to these strings.<span class="Apple-converted-space"> </span></p> <p>When you have freedom to do what you want to do. And the mistake that people make is they think that you then therefore are going to behave poorly and become anti-social a member of society. But the data don&#8217;t indicate that the people who are who are without religion are some of the best people in society.<span class="Apple-converted-space"> </span></p> <p>It sounds like you&#8217;re living pretty well on the godless universe. Victor Stanger, thank you very much for joining me on. Thank you.<span class="Apple-converted-space"> </span></p> <p>Thank you for allowing me to be on this wonderful program.<span class="Apple-converted-space"> </span></p> <p>I have used your program to help pass the time among long plane trips by downloading it to the iPod. So you do you do a pretty good job. And I like listening to it.<span class="Apple-converted-space"> </span></p> <p>You&#8217;ve seen the headlines, Bill seeks to protect students from liberal bias. The right time for an Islamic reformation. Kansas School Board redefined science. These stories sum up the immense challenge facing those of us who defend rational thinking, science and secular values. One adviser to the Bush administration dismissed as the reality based community. Who could have imagined that reality would need defenders? The educational and advocacy work of the Center for Inquiry is more essential than ever. And your support is more essential than ever. Show your commitment to science, reason and secular values. By becoming a friend of the center today, whether you are interested in the work of psychology and skeptical Inquirer magazine, the Council for Secular Humanism and Free Inquiry Magazine, the Commission for Scientific Medicine or Center for Inquiry on Campus. By becoming a friend of the center, you&#8217;ll help strengthen our impact. If you&#8217;re just learning about CFI, take a look at our Web site. W w w dot center for inquiry dot net. We hosted regional and international conferences, college courses and nationwide campus outreach. You&#8217;ll also find out about our new representation at the United Nations, an important national media appearances. We cannot pursue these projects without your help. Please become a friend of the center today by calling one 800 eight one eight seven zero seven one or visiting w w w dot center for inquiry dot net. We look forward to working with you to enlarge the reality based community.<span class="Apple-converted-space"> </span></p> <p>Thank you for listening to this episode of Point of Inquiry. Join us next week for in-depth coverage and clips of historic speeches of this weekend&#8217;s Secular Islam Summit. If you&#8217;d like to get involved with an online conversation about today&#8217;s episode with Vic Stanger, go to W w w dot CFI dash forums dot org. This is an online community of rationalist and humanist skeptics and free thinkers, NOLA Finian&#8217;s and nonbelievers, people who tend to like point of inquiry. I want you to go to the forums, get involved in these conversations. People are having a lot of fun. Their views expressed on point of inquiry aren&#8217;t necessarily the views of the Center for Inquiry. Questions and comments on today&#8217;s show can be sent to feedback at point of inquiry dawg or by visiting our Web site. Point of inquiry dot org.<span class="Apple-converted-space"> </span></p> <p>This show is produced by Thomas Donnelly and recorded at the Center for Inquiry in Amherst, New York. Executive producer Paul Kurtz Point of Inquiries Music is composed first by Emmy Award winning Michael Dwalin, contributors to today&#8217;s show, including Sarah Jordan and Debbie Goddard. I&#8217;m your host DJ Grothe.<span class="Apple-converted-space"> </span></p> </div> </div> </div> </div> <div class="entry-meta-category-tag"> <!-- <span class="cat-links"> <span class="categories-icon fas fa-th-list" title="Posted in"></span> <a href="http://pointofinquiry.org/category/uncategorized/" rel="category tag">Uncategorized</a> </span> --> <span class="tags-links"> <span class="tags-icon fas fa-tags" title="Tagged"></span> <a href="http://pointofinquiry.org/tag/law/" rel="tag">Law</a> <a href="http://pointofinquiry.org/tag/science/" rel="tag">Science</a> </span> <div class="author-bio"> <div id="dj-grothe"></div> <h4>DJ Grothe</h4> <p>D.J. Grothe is on the Board of Directors for the Institute for Science and Human Values, and is a speaker on various topics that touch on the intersection of education, science and belief. He was once the president of the James Randi Educational Foundation and was former Director of Outreach Programs for the Center for Inquiry and associate editor of <em>Free Inquiry</em> magazine. He previously hosted the weekly radio show and podcast <a href="http://www.pointofinquiry.org/"><em>Point of Inquiry</em></a>, exploring the implications of the scientific outlook with leading thinkers.</p> <a class="see-more" href="http://pointofinquiry.org/host/dj-grothe"><button class="btn btn-center poi-yellow-button-white-text">See more</button></a> </div> <div class="clearfix"></div> </div><!--.entry-meta-category-tag--> <div class="entry-meta-comment-tools"> </div><!--.entry-meta-comment-tools--> </footer><!-- .entry-meta --> </div> <!-- readability --> </article><!-- #post-## --> <div id="prev-next" class="row"> <a href="http://pointofinquiry.org/2007/02/steven_pinker_evolutionary_psychology_and_human_nature/" rel="prev"><div class="col-12 prev"><i class="fas fa-arrow-left"></i> &nbsp; Previous Episode</div></a> <a href="http://pointofinquiry.org/2007/03/robert_m_price_jesus_the_failed_hypothesis/" rel="next"><div class="col-12 next">Next Episode &nbsp; <i class="fas fa-arrow-right"></i></div></a> </div> </main> </div> <!-- **** NO SIDEBAR *** --<div id="sidebar-wrapper" class="d-block d-print-none"> </div> {sidebar-wrapper} </div> {row} </div>{Site Content }--> </div><!--.site-content--> </div><!--.page-container--> <div class="container-fluid grey d-block d-print-none"> <footer id="site-footer" class="site-footer page-footer" role="contentinfo"> <div id="footer-row" class="row contain-text m-5 mx-auto justify-content-center"> <div class="col-md-4 col-12 footer-left mr-4"> <a href="http://pointofinquiry.org"><img data-src="https://centerforinquiry.org/point-of-inquiry/wp-content/uploads/sites/30/2018/12/poi-blue-text.png" class="d-md-none footer-logo mb-3 lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img src="https://centerforinquiry.org/point-of-inquiry/wp-content/uploads/sites/30/2018/12/poi-blue-text.png" class="d-md-none footer-logo mb-3" /></noscript></a> <h3>Quick Links</h3> <hr class="mb-4" /> <div class="clearfix"></div> <ul class="navbar-nav"> <div class="footer-menu"><ul id="menu-footer-menu" class="menu"><li id="menu-item-28643" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-28643"><a href="http://pointofinquiry.org/">Home</a></li> <li id="menu-item-28642" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-28642"><a href="http://pointofinquiry.org/all-episodes/">All Episodes</a></li> <li id="menu-item-28644" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28644"><a href="http://pointofinquiry.org/about/">About Point of Inquiry</a></li> <li id="menu-item-29513" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29513"><a href="http://pointofinquiry.org/subscribe/">Subscribe</a></li> </ul></div> </ul> <h5 class="mt-5">Follow Us</h5> <a href="https://www.facebook.com/pointofinquiry/" target="_blank"><img data-src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-poi-fb-blue.png" class="header-icon mr-2 lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-poi-fb-blue.png" class="header-icon mr-2" /></noscript></a> <a href="https://twitter.com/pointofinquiry" target="_blank"><img data-src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-poi-tw-blue.png" class="header-icon mr-2 lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-event-icons-poi-tw-blue.png" class="header-icon mr-2" /></noscript></a> <!--social media icons here --> </div> <div style="border-left: 3px solid #14315a; height:400px;" class="d-none d-md-block mr-4"> </div> <div class="col-md-4 col-12 footer-right"> <a href="http://pointofinquiry.org"><img data-src="https://centerforinquiry.org/point-of-inquiry/wp-content/uploads/sites/30/2018/12/poi-blue-text.png" class="d-none d-md-block footer-logo mb-4 lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img src="https://centerforinquiry.org/point-of-inquiry/wp-content/uploads/sites/30/2018/12/poi-blue-text.png" class="d-none d-md-block footer-logo mb-4" /></noscript></a> <span class="d-md-none"><hr /></span> <h6><strong>Center for Inquiry – Headquarters</strong></h6> <p>PO Box 741<br /> Amherst, NY 14226<br /> <a href="tel:7166364869">(716) 636-4869</p></a> <br /> <h6><strong>Center for Inquiry – Executive Office</strong></h6> <p>1012 14th Street, NW, Suite 205<br /> Washington, DC 20005</p> <p><a href="http://pointofinquiry.org/terms-of-service/">Terms</a> &middot; <a href="http://pointofinquiry.org/privacy/">Privacy&nbsp;Statement</a><br /> <a href="https://centerforinquiry.org/">Center&nbsp;for&nbsp;Inquiry,&nbsp;Inc</a>&nbsp;©&nbsp;2024 &middot; All&nbsp;Rights&nbsp;Reserved.<br /> Registered 501(c)(3). EIN: 22-2306795</p> </div> </div> </footer><!--.page-footer--> </div> <!--wordpress footer--> <script type="text/javascript">function showhide_toggle(e,t,r,g){var a=jQuery("#"+e+"-link-"+t),s=jQuery("a",a),i=jQuery("#"+e+"-content-"+t),l=jQuery("#"+e+"-toggle-"+t);a.toggleClass("sh-show sh-hide"),i.toggleClass("sh-show sh-hide").toggle(),"true"===s.attr("aria-expanded")?s.attr("aria-expanded","false"):s.attr("aria-expanded","true"),l.text()===r?(l.text(g),a.trigger("sh-link:more")):(l.text(r),a.trigger("sh-link:less")),a.trigger("sh-link:toggle")}</script> <script type="text/javascript">!function(t,e){"use strict";function n(){if(!a){a=!0;for(var t=0;t<d.length;t++)d[t].fn.call(window,d[t].ctx);d=[]}}function o(){"complete"===document.readyState&&n()}t=t||"docReady",e=e||window;var d=[],a=!1,c=!1;e[t]=function(t,e){return a?void setTimeout(function(){t(e)},1):(d.push({fn:t,ctx:e}),void("complete"===document.readyState||!document.attachEvent&&"interactive"===document.readyState?setTimeout(n,1):c||(document.addEventListener?(document.addEventListener("DOMContentLoaded",n,!1),window.addEventListener("load",n,!1)):(document.attachEvent("onreadystatechange",o),window.attachEvent("onload",n)),c=!0)))}}("wpBruiserDocReady",window); (function(){var wpbrLoader = (function(){var g=document,b=g.createElement('script'),c=g.scripts[0];b.async=1;b.src='http://pointofinquiry.org/?gdbc-client=3.1.43-'+(new Date()).getTime();c.parentNode.insertBefore(b,c);});wpBruiserDocReady(wpbrLoader);window.onunload=function(){};window.addEventListener('pageshow',function(event){if(event.persisted){(typeof window.WPBruiserClient==='undefined')?wpbrLoader():window.WPBruiserClient.requestTokens();}},false);})(); </script><style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" src="http://pointofinquiry.org/wp-content/plugins/embed-any-document/js/pdfobject.min.js?ver=2.7.4" id="awsm-ead-pdf-object-js"></script> <script type="text/javascript" id="awsm-ead-public-js-extra"> /* <![CDATA[ */ var eadPublic = []; /* ]]> */ </script> <script type="text/javascript" src="http://pointofinquiry.org/wp-content/plugins/embed-any-document/js/embed-public.min.js?ver=2.7.4" id="awsm-ead-public-js"></script> <script type="text/javascript" src="http://pointofinquiry.org/wp-includes/js/jquery/ui/core.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" src="http://pointofinquiry.org/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script> <script type="text/javascript" id="jquery-ui-datepicker-js-after"> /* <![CDATA[ */ jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":0,"isRTL":false});}); /* ]]> */ </script> <script type="text/javascript" src="http://pointofinquiry.org/wp-includes/js/comment-reply.js?ver=6.6.2" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script type="text/javascript" src="http://pointofinquiry.org/wp-content/themes/bootstrap-basic4/assets/js/bootstrap.bundle.min.js?ver=4.6.2" id="bootstrap4-bundle-js"></script> <script type="text/javascript" src="http://pointofinquiry.org/wp-content/themes/bootstrap-basic4/assets/js/main.js?ver=6.6.2" id="bootstrap-basic4-main-js"></script> <script type="text/javascript" src="http://pointofinquiry.org/wp-content/plugins/wp-smush-pro/app/assets/js/smush-lazy-load.min.js?ver=3.16.5" id="smush-lazy-load-js"></script> <div id="tnp-modal"> <div id="tnp-modal-content"> <div id="tnp-modal-close">&times;</div> <div id="tnp-modal-body"> </div> </div> </div> <script> var tnp_leads_popup_test = false; var tnp_leads_delay = 40000; // milliseconds var tnp_leads_days = '30'; var tnp_leads_count = 0; var tnp_leads_url = 'http://pointofinquiry.org/?na=leads-popup&language='; var tnp_leads_post = 'http://pointofinquiry.org/?na=ajaxsub'; </script> <script src="http://pointofinquiry.org/wp-content/plugins/newsletter-leads/public/leads.js"></script> <!--end wordpress footer--> </div><!--Wrapper--> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10