Questions related to the application of Mathematica to problems in physics.

learn more… | top users | synonyms

0
votes
1answer
66 views

Doing vector manipulations on Mathematica

This is hopefully a simpler version of this previous unanswered question of mine. Let me just focus on the two expressions $F_2^{(s)}$ and $F_3^{(s)}$ given in A.3 and A.4 of page 19 of this paper. ...
19
votes
0answers
878 views

Measuring fractal dimension of natural objects from digital images

This is a useful topic. A college physics lab, medical diagnostics, urban growth, etc. - there is a lot of applications. On this site by Paul Bourke about Google Earth fractals we can get a high ...
2
votes
0answers
87 views

UnitConvert: the square of a dimensionless quantity is not dimensionless

This is pretty ridiculous. Look at the following code: UnitConvert[Quantity["FineStructureConstant"], 1]^2 0.0000532513545 ...
1
vote
0answers
175 views

Kramers-Kronig Mathematica code

I'm trying to write Mathematica code to use Kramers-Kronig on a csv file with 2 columns. Column 1 is h(eV). It goes from 0 to 6, in increments of 0.1. Column 2 is alpha (cm^-1). For some reason, my ...
1
vote
0answers
66 views

Getting poles of a Gamma functions

Why do the following 2 sequences give different answers? n = 1.5 Series[Gamma[0.5 - n - x], {x, 0, 2}] Series[Gamma[-1 - x], {x, 0, 2}] (..clearly the output from the second expression is ...