New Discovery Disproves Quantum Theory?


Recommended Posts

Randell Mills, a Harvard University medic who also studied electrical engineering at Massachusetts Institute of Technology, claims to have built a prototype power source that generates up to 1,000 times more heat than conventional fuel. Independent scientists claim to have verified the experiments and Dr Mills says that his company, Blacklight Power, has tens of millions of dollars in investment lined up to bring the idea to market. And he claims to be just months away from unveiling his creation.

The problem is that according to the rules of quantum mechanics, the physics that governs the behaviour of atoms, the idea is theoretically impossible.

News Article - The Guardian

Very interesting. I'm not gonna masqaurade as a quantum-genius, but i thoguht quantum mechanics wasn't totally accepted anyway as it doesn't work at greater size scales, thus the quest for "a theory of everything." So, he's kinda disproven a theory that was already not totally accepted, right?

I'm not sure.

Some people on slashdot are calling this a crackpot theory but apparently Nasa is doing research on hydrinos as well.

Mind you, I don't think most of the people on slashdot have a clue about the theories involved. I'm taking a wait and see attitude concerning this.

Don't forget that most people on slashdot don't even read the articles before commenting on them. :D

What about all the paradoxes that contradict common sense ? I mean how can I accept uncertainty in science ?

586784100[/snapback]

But science IS uncertainty.... otherwise we'd never question or explore anything!

Not too long ago the Speed of sound was a hard physical limit that was absolute, not any longer, same with the speed of light... someday it will either fall, or be worked around... personally I think Quantum physics (and possibly string theory) can and will explain a lot about the order of existance.... once we evolve enough, and learn enough to be able to understand the concepts.

Heisenberg's Uncertainty Principle is a very fundamental principle in Quantum Theory. I agree, all science is uncertain, as this is a probablistic universe. You can never be 100% sure of anything in this universe. When DNA techs try to identify someone's DNA, they don't say "this is the man," they say "there is a 1 in 40 billion chance it is not the man."

If you asked us "believe it or not," that would be a religous question. Without enough evidence and verification made in different labs worldwide, we cannot say yes or no.

  I am optimistic, but guarded.

586785347[/snapback]

How are you relating Quantum Theory to a religious question?

How are you relating Quantum Theory to a religious question?

586785520[/snapback]

Science is to be proved by evidence and accurate data, without which you cannot request others to believe any theories made by you. Otherwise you act like a religious, not a scientist.

Science is to be proved by evidence and accurate data, without which you cannot request others to believe any theories made by you. Otherwise you act like a religious, not a scientist.

586795157[/snapback]

ok, i just got confused why you said religious. So you're saying that asking people to believe Quantum Theory is like asking people to believe in God; there's just no way to prove it?

If you asked us "believe it or not," that would be a religous question. Without enough evidence and verification made in different labs worldwide, we cannot say yes or no.

Uh, quantum mechanics have quite a lot support FOR their existance. They're even making practical life a mess for some people, just ask your favorite microchip designer.

I think I see a man taking a wheelbarrow's worth of a lot of very gullable people's money to the bank - and clicking his heels in happiness along the way.

History has been full of scams and con men like this. The web is full of stories of people who have invested in perpetual motion machines, or in energy sources that are more than 100% efficient (which is the case in this instance - and which also therefore defies the laws of themodynamics - which says incidentally that you can't get more energy out of a system than you put in). They have all come and gone (as has their money) but the quantum theory has stood firm.

I also however would be happy to see QM disproved - but for a different reason. My motivations are purely scientific - because if it were ever disproved, this would simply mean for me that it will almost inevtiably been replaced by a much better, more comprehensive, and more accurate theory. But that is just the way science works - we can only every trully progress by disproving our previous theories and replacing them with better ones. So in this sense no theory - not even QM can ever really be considered absolute.

I freely confess though that I am one of those people who 'never read the article' - but again only because I have read about so many similar scams/stories in the past - and no doubt I will read about and hear many similar scams again in the future.

If however you are looking for real scientific insight try reading a reputable scientific journal like Nature, or The New Scientist, of Scientific American - rather than looking for sensationalist stories like this on the web - because if there is any real new science to be found, these are the places where you are most likely to first hear about it.

Best regards,

GJ

I freely confess though that I am one of those people who 'never read the article' - but again only because I have read about so many similar scams/stories in the past - and no doubt I will read about and hear many similar scams again in the future.

If you'll read it, you'll run into stuff like peer-reviews and lab confirmations. But that's not something I'd trust the Guardian to have properly researched and verified. It's already hilarious enough that the "Hydrino Study Group" uses Yahoo Groups for discussions.

This just sounds like a better dihydrogen-monoxide story.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Euro-Office must default to ODF to be considered "genuinely European", LibreOffice argues by David Uzondu Euro-Office is a web-based collaborative office suite that positions itself as a "European sovereign alternative" to American tech companies, backed by a coalition of developers including Nextcloud, IONOS, Abilian, BTactic, OpenProject, and, more recently, Tuta. The project officially went live a couple of days ago, but not before drawing heavy fire from LibreOffice developers, who called the marketing claim that Euro-Office represents the "first open-source office suite developed in Europe" a deceptive historical inaccuracy because projects like OpenOffice and LibreOffice existed decades earlier. Now that the project has launched, LibreOffice is back with another complaint, arguing that Euro-Office cannot consider itself "genuinely European" while it pushes proprietary Microsoft defaults on users. Euro-Office had promised to improve the OpenDocument Format (ODF) back in April, but the current release still plagues users with several technical failures. For instance, the suite lacks an admin setting to enforce ODF, and mobile editors completely block ODF saves, forcing files into Microsoft's OOXML formats. Some configurations force files into read-only mode, while editing frequently corrupts document formatting or erases data. LibreOffice thinks that merely supporting a format as an afterthought does not make you a sovereign alternative, as file formats are the battleground where" digital sovereignty is won or lost." The road to the first stable release of Euro-Office has been quite bumpy due to an aggressive public fallout with OnlyOffice, from which the coalition originally forked the project. OnlyOffice struck back by accusing the coalition of violating copyright terms under its AGPLv3 branding requirements by stripping the original branding anyway and forking the code. Getting Euro-Office up and running is a bit wonky (at least for non-technical users), as there is no direct installer to grab off the web. The easiest way we learnt is by using Docker. First, pull the official Euro-Office image from the GitHub Container Registry: docker pull ghcr.io/euro-office/documentserver:latest Then, run the container with active ports and a secure JWT token, enabling the test environment: docker run -i -t -d -p 8080:80 --restart=always -e EXAMPLE_ENABLED=true -e JWT_SECRET=my_secure_jwt_secret ghcr.io/euro-office/documentserver:latest And finally, open a web browser and go to the following address: http://localhost:8080 If you are running this on a remote server, replace localhost with your server's IP address. You will see the Euro-Office test page, where you can create new text documents, spreadsheets, or presentations directly in the browser. Image via Euro-Office Nextcloud promises that proper standalone desktop versions and mobile apps will arrive in a future release.
    • It’s any of their products not just windows.
    • Google Gemini has been failing for users across the United States, Europe, and Asia since early Wednesday morning, June 10, 2026, and more than six hours into the incident Google has yet to declare a fix............. https://www.techtimes.com/articles/318152/20260610/google-gemini-outage-tops-six-hours-errors-1076-1099-worldwideflash-lite-still-answers.htm
    • Fun fact: There are more Warhammer 40k games than there are stars in the universe.
  • Recent Achievements

    • Week One Done
      FBSPL earned a badge
      Week One Done
    • One Year In
      Jim Dugan earned a badge
      One Year In
    • One Month Later
      Tommi118 earned a badge
      One Month Later
    • One Month Later
      sjbousquet earned a badge
      One Month Later
    • Week One Done
      sjbousquet earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      486
    2. 2
      PsYcHoKiLLa
      197
    3. 3
      +Edouard
      155
    4. 4
      Steven P.
      83
    5. 5
      ATLien_0
      69
  • Tell a friend

    Love Neowin? Tell a friend!