Explain Definition and 1000 Threads
-
F
Insights When Pro Scientists Explain Using Pop Science
Continue reading...- fresh_42
- Thread
- Explain Science
- Replies: 31
- Forum: STEM Educators and Teaching
-
A
B Explain Integration to me, please
Hi all, I understand what the integral does - it calculates the area under a curve and can easily see how it could be used to calculate an area of land. What I do not understand is really the physical meaning when it comes to the real world. Here are some examples: 1. A set of data...- Alienspecimen
- Thread
- Explain Integration
- Replies: 5
- Forum: Calculus
-
Newton's First Law to explain Washing Machine Spin Cycle
I truly am not sure. I assume it is that because everything has inertia, an a tendency to remain in a constant state of motion, when the clothes are quickly spun around they cannot remain in a constant state of motion (of either rest or constant velocity), but the water is "pushed"/spun out of...- thomas_shvekher
- Thread
- Cycle Explain First law Law Machine Newton's first law Spin Washing machine
- Replies: 23
- Forum: Introductory Physics Homework Help
-
B Explaining Distant Time Dilation & Enhanced Gravitation
When we observe distant time dilation effects, usually indicated by redshift, there are three possible explanations: 1) The speed of light, is slower there and then; 2) Space, is contracted for light there and then; 3) The frequency, of specific light is slower there and then. However, it is...- doudou
- Thread
- Dilation Explain Gravitation Time Time dilation
- Replies: 4
- Forum: Special and General Relativity
-
K
I Deur Gravitational self-interaction Doesn't Explain Galaxy Rotation Curves
Deur Gravitational self-interaction Doesn't Explain Galaxy Rotation Curves this paper A. N. Lasenby, M. P. Hobson, W. E. V. Barker, "Gravitomagnetism and galaxy rotation curves: a cautionary tale" arXiv:2303.06115 (March 10, 2023). Directly comments on Deur's theory of self-interaction...- kodama
- Thread
- Curves Explain Galaxy Gravitational Rotation
- Replies: 72
- Forum: Beyond the Standard Models
-
C
Can you please explain Bernoulli's equation?
Can you please explain why is there work done by F2(on photo of textbook explanation of Bernoully equation (photo below)). I can understand that W2 is caused by F2 which is gravitational force(screenshot photo from YT). But for the explanation in textbook pipe is straight, no height...- Callmelucky
- Thread
- Bernoulli equation Bernoulli principle Bernoulli's Bernoulli's equation Explain Theory
- Replies: 61
- Forum: Introductory Physics Homework Help
-
G
Java Please help explain the reason for the errors displayed for my Java code
//program showing an advantage of using arrays public class Arr3 { public static void main(String []args) { System.out.println("There are 31 days in the month of Jan"); System.out.println("There are 27 days in the month of Feb"); System.out.println("There...- grzz
- Thread
- Code Errors Explain Java Reason
- Replies: 8
- Forum: Programming and Computer Science
-
I Haag's Theorem: Explain Free Field Nature
What is the main reason for a free field staying free according to Haag's theorem?- lindberg
- Thread
- Explain Field Nature Quantum field theory Theorem
- Replies: 4
- Forum: Quantum Physics
-
L
B Why are gravitons needed to explain gravitational attraction?
Hi! Isn't gravity just a smaller object moving toward the lower energy state created by a larger object (time slows down the closer you are to a massive object)? Why do we need a force carrying particle for gravity?- lukegregor
- Thread
- Attraction Explain Gravitational Gravitational attraction Gravitons
- Replies: 8
- Forum: Other Physics Topics
-
A What will be value of this differential? Kindly help and explain
Can someone help me understand the answer to this differential? I have the following expression where Now what I can understand the differential of what will be the following? -
I Can someone explain why momentum does not commute with potential?
My assumption is that knowing potential can lead to knowing the position, but I don't know how this can be.- coolpoke0908
- Thread
- Commutators Commute Explain Momentum Potential Quantom physics
- Replies: 2
- Forum: Quantum Physics
-
How to explain the effect of temperature profile on feedback coefficient?
Hi all, I'm trying to derive fuel temperature coefficient in a TRIGA reactor using a monte carlo code. When i do that, if i assume a radial temperature profile along the core, i obtain smaller value (-7pcm/K) than the one achieved with uniform temperature (-9pcm/K). More in detail: in my case...- mark_bose
- Thread
- Coefficient Explain Feedback Temperature
- Replies: 4
- Forum: Nuclear Engineering
-
S
Please can someone help explain the Pinnocchio Illusion?
The Pinnocchio Illusion is where you touch your nose whilst blindfolded and apply vibrations to your bicep, and this tricks your mind into thinking your finger is moving and therefore that your nose is growing. I would like to learn more about this very specific phenomena, namely the ability to...- some bloke
- Thread
- Explain
- Replies: 4
- Forum: Biology and Medical
-
Please help explain this Blood Pressure Monitor 'calibration' system
I've wanted to check the accuracy of my Blood Pressure Monitor (BPM) (an automated Omron unit), and finally found this old (2016) thread on another site (linked below). Prior to this, I only found the less helpful 'compare the reading to your Doctor's office' (BP varies with every reading, not...- NTL2009
- Thread
- Blood Calibration Explain Monitor Pressure System
- Replies: 28
- Forum: General Engineering
-
Please explain the relation behind this?
How does electrical potential and electric fields change from dipole to parallel dipoles? What does this math demonstrate? What does the equations mean?- coulthardb
- Thread
- Explain Relation
- Replies: 2
- Forum: Introductory Physics Homework Help
-
G
I Explain how soil is not frozen after 3 weeks of below freezing weather
It has been below freezing for 3 weeks, 12°F at night and in mid 20s during the day. Yard and garden are frozen 2" deep hard as cement everywhere except 3 row in the garden covered with 1/2" of pine needles. Soil under pine needle is not frozen I can push my finger into the soil 3" deep. How...- gary350
- Thread
- Explain Freezing Soil Weather
- Replies: 15
- Forum: Classical Physics
-
B Does dark energy or cosmic inflation explain flatness?
As I understand, the main theoretical virtue of Guth's inflation hypothesis is that it explains a bunch of otherwise hard-to-account-for phenomena under the standard big bang model without inflation: the Horizon Problem, the Flatness problem, the Monopole problem, and also the problem of how...- RogerWaters
- Thread
- Cosmic inflation Dark energy Energy Explain Inflation
- Replies: 37
- Forum: Cosmology
-
S
Citizen explorer tries to explain the Ivanpah Solar Power Towers
First, here is a riddle: Why did the tortoise cross the road? Because an under-pass was available. An adventurer and desert explorer visited and tried to explain the workings of the solar powered towers at Ivanpah, in the Mojave Desert in California. The person is not any kind of scientist nor...- symbolipoint
- Thread
- Explain Power Solar Solar power
- Replies: 2
- Forum: General Discussion
-
MHB How does nested for loop works, can you explain with dry run?
Here is the code that I am talking about-: n=int(input("Enter a number")) for num in range(2,n+1): for i in range(2,num): if(num%i==0): break else: print(num,end="") If I give n=5 output should be 2,3,5. Here is my dry run. Everything is fine except for 2...- shivajikobardan
- Thread
- Explain Loop Works
- Replies: 2
- Forum: Programming and Computer Science
-
H
I How does QM explain that we see electrons circulating in a magnetic field?
Hi Pfs. I think that QM can explain the classical things explained by classical physics. Using mean values and so on. We know that in a constant magnetic field an electron will rotate on a circle (at the macroscopic scale approximation) I have the answer for the Larmor precession but how to...- Heidi
- Thread
- Electrons Explain Field Magnetic Magnetic field Qm
- Replies: 33
- Forum: Quantum Physics
-
How to explain the Quantum Mechanics/Math of the stages of MRI imaging
"B0 is a static magnetic field (produced by a superconducting magnet) that initially causes the protons in the body to align with the field and precess at the larmor frequency along the z axis . From a mathematical perspective this precession around the B0 axis occurs due to the time evolution...- kbansal
- Thread
- Explain Imaging Magnetic resonance Mri Quantum Quantum mechanics Schrodinger equation
- Replies: 4
- Forum: Advanced Physics Homework Help
-
G
A Explain how a magnet can store up 200 times more energy for 24 hrs.
I have a magnet that will lift only 1 lb of steel with an electric lift. If I discharge a big capacitor into a 1000 turn coil with the magnet in the center of the coil it super charges the magnet it will lift 200 lbs for about 4 seconds. The magnet has a half life of about 4 second for about...- gary350
- Thread
- Energy Explain Magnet
- Replies: 2
- Forum: Classical Physics
-
E
My friend thinks I'm arguing when I explain my opinion, I wonder why?
So I have a friend who thinks I'm arguing whenever I state my opinion and explain my opinion. For example, he said he was ugly and I was telling him that he's not ugly and that people are beautiful in their own ways, he disagreed, so then I also pointed out some of his features that are really...- Ertiyu
- Thread
- Explain Opinions
- Replies: 16
- Forum: General Discussion
-
J
I How well do cosmological models explain the observed µ vs. z data?
The following figure shows observed distance modulus (µ) vs. redshift (z) data (references of data sources are available): How well do cosmological models, such as ΛCDM and models based on non-expanding universe, explain these observed data? For explanation of terms, please see, Type Ia... -
I Can someone explain Quasi-steady-state cosmology to me?
I know it says Universe is eternal, how does that work with gravity? If all the stars and galaxies had infinite time to attract each other why are they still apart? I guess this is a naïve question because no one talks about it but I can't figure it out. Thank you for answers!- TheHeraclitus
- Thread
- Cosmology Explain Steady state
- Replies: 2
- Forum: Cosmology
-
I Can magnetic fields explain anomalous galaxy rotation curves?
Magnetic fields as an alternative explanation for the rotation curves of spiral galaxies ABSTRACT THE flat rotation curves of spiral galaxies are usually regarded as the most convincing evidence for dark matter. The assumption that gravity alone is responsible for the motion of gas beyond the... -
Can someone explain why bicycle spokes break while cycling fast?
.- plsputmeoutofmymiser
- Thread
- Bicycle Break Explain
- Replies: 2
- Forum: Calculus and Beyond Homework Help
-
Explain the Schrodinger equation
Please explain in simple words, the meaning of the Schrodinger wave equation in the quantum mechanics model of atom. $$\frac{\partial^{2} \psi}{\partial x^{2}}+\frac{\partial^{2} \psi}{\partial y^{2}}+\frac{\partial^{2} \psi}{\partial z^{2}}+\frac{8 \pi^{2} m}{h^{2}}(E-U) \psi=0$$- Huzaifa
- Thread
- Explain Quantum basics Schrödinger Schrodinger equation
- Replies: 3
- Forum: Introductory Physics Homework Help
-
Python Kindly explain this source code for me
Check this link: How to override the copy/deep-copy operations for a Python object? Can anyone explain, in layman's terms, what is going on in this source code? from copy import copy, deepcopy class MyClass(object): def __init__(self): print('init') self.v = 10...- user366312
- Thread
- Code Explain Python Source
- Replies: 2
- Forum: Programming and Computer Science
-
I New Paper Claims Primordial Black Holes Don't Explain Dark Matter
A new pre-print makes a sensible and convincing, in my view, argument that phenomena attributed to dark matter are not exclusively or predominantly explained by primordial black holes formed at less than the mass of a star shortly after the Big Bang, by means other than stellar collapse. This... -
I How do hidden variables supposedly explain radioactive decay?
If individual atoms are indistinguishable from one another, then how can you tell if atom A will experience radioactive decay before identical atom B? ISTM there would have to be some underlying structure beyond electrons and quarks and unique to each atom / particle to be able to do this...- BWV
- Thread
- Decay Explain Hidden variables Radioactive Radioactive decay Variables
- Replies: 6
- Forum: Quantum Interpretations and Foundations
-
K
B Explaining Spaghettification w/ Spacetime Curvature
I enjoy explaining spacetime curvature to people with a rank-beginner understanding of GR. But someone asked about that favorite concept in pop-sci, spaghettification. I'm having a hard time with it. If you fell into a black hole, there's no reference frame within which you could describe...- Karl Coryat
- Thread
- Curvature Explain Spacetime Spacetime curvature Spaghettification Terms
- Replies: 25
- Forum: Special and General Relativity
-
How to Solve Calculus Problems with Recurrence: A Step-by-Step Explanation
i think solution with récurrence for n=1 then 1=2¨¨^0(2x0 +1) true suppose that n=2¨^p(2q+1) is true shows that n+1=2^p( 2q +1)? n+1=2¨^p(2q+1) +1 ⇒ ??- avata4
- Thread
- Calculus Explain
- Replies: 3
- Forum: Calculus and Beyond Homework Help
-
Please explain this calculus solution
If f'(x) were a simpler function like f'(x) = cos(x) I would say f(x) = sin(x) + C and then evaluate C by knowing that 2 = sin(1) + C and then C would equal 2-sin(1) the f(x) = sin(x) + 2 - sin(1), f(0) = sin(0) + 2 - sin(1) = 0 + 2 -.841 = 1.58 However the more complicated problem has f'(x) -...- barryj
- Thread
- Calculus Explain
- Replies: 10
- Forum: Calculus and Beyond Homework Help
-
E
B Can someone please explain Feynman's index notation?
I found some parts of Vol II, Chapter 25 basically unreadable, because I can't figure out his notation. AFAICT he's using a (+,-,-,-) metric, but these equations don't really make any sense: The first one is fine, and so is the second so long as we switch out ##a_{\mu} b_{\mu}## for ##a_{\mu}...- etotheipi
- Thread
- Explain Index Index notation Notation
- Replies: 12
- Forum: Special and General Relativity
-
B How do you explain a plane wavefront based on huygens' principle?
Let's assume a plane wave going in the x-direction. Going by Huygens' principle, each point on the wavefront should act like a source. If that's the case, wouldn't plane wavefront become spherical like shown below? I am so confused- iVenky
- Thread
- Explain Huygens Plane Principle Wavefront
- Replies: 2
- Forum: Classical Physics
-
Using Physics to explain the motion of Olympic Divers
I have a feeling that they will reach the water surface in the same time. How do I explain this in physics?- greedygnome
- Thread
- Angular Explain Motion Physics
- Replies: 1
- Forum: Introductory Physics Homework Help
-
Y
I don't know how to explain this in debug
I run into something strange when I step through debug. This is the program to add names one by one, and each name entered, it will sort and put in ascending order into vector DirV[]. I cannot explain why the if statement in line 51 doesn't work. First name I enter is just 'r', I just put a...- yungman
- Thread
- Explain
- Replies: 36
- Forum: Programming and Computer Science
-
S
I A 5th Dimension May Explain Quantum Theory
At least according to Tim Anderson Ph.D who wrote the paper in Physics Review. https://news.knowledia.com/US/en/articles/a-5th-dimension-may-explain-quantum-theory-the-infinite-universe-medium-6f1d6fd371e068a07f357b9babe9ab2eec06d034 What do you make of this? "The paper simply presents...- Secan
- Thread
- Dimension Explain Quantum Quantum theory Theory
- Replies: 3
- Forum: Quantum Interpretations and Foundations
-
I What are the most important phenomena that the Standard Model can't explain?
I guess the crux of the question is, where are we more likely to encounter new physics? The standard model already explains almost every experimental result, but not EVERY result. But what are some of the most important results that are either incompatible with the standard model or just...- AndreasC
- Thread
- Explain Important Model Phenomena Standard Standard model
- Replies: 32
- Forum: Beyond the Standard Models
-
H
Please Explain My Polarized Light Experiments
I wanted to filter out reflections from glass. So I bought a camera with a "circular polarizing filter." It filters out polarized light, adjustable for orientation. The result confuses some cameras, so it also has a second stage which induces circular polarization. The results were... -
J
I Does General Relativity explain inertia?
As far as I understand it general relativity does not explain the origin of the inertial mass ##m_i## in Newton's law of motion ##\vec{F}=m_i\ d\vec{v}/dt## but rather it simply applies the concept to curved spacetime. For example if we have a particle with inertial mass ##m_i## and charge...- jcap
- Thread
- Explain General General relativity Inertia Newton 2nd law Relativity
- Replies: 38
- Forum: Special and General Relativity
-
T
I Can someone explain to me a flop transition in laymen's terms?
Can someone explain a flop transition to me in laymen terms? And what consequences does it have on the universe? Thanks- Trollfaz
- Thread
- Explain Terms Transition
- Replies: 6
- Forum: Beyond the Standard Models
-
Awesome Sci Fi Series that’s hard to explain
I just watched season one of Tales from the Loop. It has the mood of Interstellar on the Earth where people live quiet lives of desperation. There’s an underground physics lab nicknamed the Loop where the impossible becomes possible. There’s the people whose lives are affected in strange ways...- jedishrfu
- Thread
- Explain Hard Series
- Replies: 3
- Forum: Science Fiction and Fantasy Media
-
Classically, how can I explain Reflection?
Hello guys! I was trying to understand (without involving too much QM) how does reflection works, and why metals reflect almost 100% of visible light while glass does not, and also why when we increase the frequency, metals become transparent. I know that when any single photon reaches a body... -
D
How to explain TE20 mode in a rectangular waveguide from reflection
In Feynman's lectures, he explained the ##TE_{10}## mode of waveguide by considering a line source in the middle of waveguide as below: since the adjacent sources are all out-of-phase, which means to have interference, the adjacent optical path would be about half of wavelength as below: where... -
E
How to explain serious extenuating circumstances in PhD apps
Hello! I am planning on applying to physics PhD programs in the fall. My first two years of undergrad I averaged Bs in my lower division classes. Last two years I got a majority of As and A-s in my upper division courses. Those first two years I had some extremely personal extenuating...- em-c-squared
- Thread
- Apps Explain Grad school application Graduate school admissions Phd Phd admission Phd advice
- Replies: 5
- Forum: STEM Academic Advising
-
G
I How does Bohmian mechanics explain quantum bomb testing?
Hi. In an Elitzur–Vaidman bomb tester, will the guiding wave be different in a situation with a live bomb compared to one with only a dud? And if yes, how does the bomb interact with the guiding wave? Because usually it is described as a pointlike device that only explodes when hit by the...- greypilgrim
- Thread
- Bohmian mechanics Bomb Explain Mechanics Quantum Testing
- Replies: 1
- Forum: Quantum Interpretations and Foundations
-
E
Can anyone explain this derivation of the variable mass equation?
This question stems from one of the recent homework threads. I'm familiar with the derivation given here regarding mass accretion and ejection, where the general idea is to define a system around body and all of the incoming/leaving mass so that we can once again apply NII to the whole thing. I...- etotheipi
- Thread
- Derivation Explain Mass Strange Variable Variable mass
- Replies: 4
- Forum: Optics
-
Z
I Could Quantum Physics explain the singularity in a Black Hole?
If a singularity exists in the center of a black hole, could quantum physics, instead of relativity , explain it?- zuz
- Thread
- Black hole Explain Hole Physics Quantum Quantum physics Singularity
- Replies: 6
- Forum: Quantum Physics