B Notation for a "scalar absolute field"?

timjdoom
Messages
6
Reaction score
3
TL;DR Summary
I have a mathematical expression which I'm unsure of the formal representation or name of. The best way I can think to describe it is as a "scalar absolute field".
The notation I think best describes it is

## F = \lVert\int^{space}_s|\vec{V}|ds\rVert ##

So you have a vector field V in a 3d space. For each point you integrate over all of space (similar to a gravitational or electromagnetic field) *but* vectors in opposite directions do not cancel, they add to the magnitude (i.e. you integrate the absolute of the vector). Then finally you want the scalar value, so you normalise the vector.

For context the python (numpy) code to express it is given say a 4-dimensional array `vec` (a 3D vector in 3D space) might be

Python:
xyz = np.array([np.sum(dimension) for dimension in np.abs(vec)])
field = np.sum(xyz**2, axis=0)**0.5

Example for gravitation (or charge) in a 2D space
- You have a mass ##M_a## at position a, exerting a force ##\vec{F_a} = -3\hat{x} +3\hat{y}## on point p.
- Next you have a force ##M_b## at position b, exerting a force ##\vec{F_b} = +2\hat{x} +2\hat{y}## on point p.
- The vector force at point p is therefore ##\vec{F_p} = \vec{F_a}+\vec{F_b} = -1\hat{x} +5\hat{y}##
- Meaning the absolute of the vector is ##|\vec{F_p}| = 1\hat{x} + 5\hat{y}##, and normalising would give you the scalar of ##\lVert\vec{F_p}\rVert = \sqrt{1^2+5^2} = \sqrt{26}##
- What I need is ##|\vec{F_a}|+|\vec{F_b}| = (|-3|+|2|)\hat{x}+ (|3|+|2|)\hat{y} = 5\hat{x}+5\hat{y}##, which gives you the scalar ##\lVert|\vec{F_p}|\rVert = \sqrt{5^2+5^2} = \sqrt{50}##
 
Mathematics news on Phys.org
Just integrate the scalar rho/r2 for gravity, and whatever other magnitude you have for other forces? No need to invent more notation.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.
Back
Top