Magnetic Dipole Moment: Difference between revisions

From Physics Book
Jump to navigation Jump to search
Shiyu0811 (talk | contribs)
No edit summary
m updated the references so it has substance instead of just a placeholder
 
(45 intermediate revisions by 6 users not shown)
Line 1: Line 1:
'''CLAIMED BY SHI YU LIU (FALL 2016)'''
''''''
by Guillermo Bacardi


The magnetic dipole moment of a loop of current may be considered to be a measure of the strength of the magnetic field. The magnetic field generated by a magnet points from south to north and is proportional to its magnetic dipole moment. In a loop of current the magnetic dipole moment is a vector that is perpendicular to the loop and can be found using the right-hand-rule. The magnetic dipole moment is a measure of the strength of the magnetic dipole.
'''Chris Vuong - Spring 2026'''


==The Main Idea==
==Main Idea==
A magnetic dipole moment describes the strength and orientation of a current loop as a magnetic source. For a loop carrying current, the magnetic dipole moment is a vector that points perpendicular to the plane of the loop, with direction determined by the right-hand rule.


The main idea for this topic is to define the magnetic dipole moment and distinguish from the magnetic moment. The magnetic moment is a vector quantity that is used to calculate the torque generated by a magnetic field while the magnetic dipole moment is a value used to define the current of a loop to find the magnetic field on axis.
The magnitude of the magnetic dipole moment is


:<math>\mu = IA</math>


===A Mathematical Model===
where <math>I</math> is the current and <math>A</math> is the area enclosed by the loop. For a coil with <math>N</math> turns, the magnitude becomes


The magnetic dipole moment is represented by '''µ'''. This is set equal to the current running through the wire multiplied by the area of the circular loop. Here the area of the circular loop is defined as πR^2. The units for the magnetic dipole moment are amperes times meters squared.
:<math>\mu = NIA</math>


<math> \boldsymbol{\mu} = \boldsymbol{I} \times\mathbf{A}</math>
The magnetic dipole moment is useful because it helps predict how a loop behaves in an external magnetic field. In particular, it is used to calculate torque and magnetic potential energy. Current loops, bar magnets, and even atoms can often be modeled as magnetic dipoles.


If there is more than one coil in the loop then all of the coils must be accounted for by a value N that represents all of the coils.  
===Mathematical Model===
[[File:Magnetic dipole copy.jpg|right|400px]]


<math> \boldsymbol{\mu} = \boldsymbol{NI} \times\mathbf{A}</math>
The magnetic dipole moment is represented by the vector <math>\boldsymbol{\mu}</math>. Its magnitude is equal to the current in the loop multiplied by the area enclosed by the loop. For a circular loop, the area is <math>\pi R^2</math>. The direction of <math>\boldsymbol{\mu}</math> is given by the right-hand rule. The SI units of magnetic dipole moment are ampere-meters squared.
 
The overall equation for a magnetic field turns into
::<math>|\boldsymbol{\mu}| = \mu = IA = I\pi R^2</math>
 
For a coil with <math>N</math> turns, the magnetic dipole moment becomes
 
:::<math>|\boldsymbol{\mu}| = \mu = NIA</math>
 
*The '''magnitude of the magnetic field at the center of a current loop''' simplifies as (see [[Magnetic Field of a Loop]]):
 
:::<math>\begin{align}
B & = \frac{\mu_0}{4 \pi} \frac{2 \pi I R^2}{(z^2 + R^2)^{3/2}} \text{, where } z = 0 \\
& = \frac{\mu_0}{4 \pi} \frac{2 \pi I R^2}{R^3} \text{, and the } R^2 \text{ cancels} \\
& = \frac{\mu_0}{4 \pi} \frac{2 \pi I}{R} \\
& = \frac{\mu_0}{4 \pi} \frac{2 \pi \frac{\mu}{\pi R^2}}{R} \text{, where } I = \frac{\mu}{\pi R^2} \\
B & = \frac{\mu_0}{4 \pi} \frac{2 \mu}{R^3}
\end{align}</math>
 
*The '''magnitude of the magnetic moment <math>\mu</math> of an electron in circular orbit''' is given by
 
:::<math>|\boldsymbol{\mu}| = \mu = IA = -\frac{e}{2m_e}L</math>
 
::::where <math>L</math> is the magnitude of the angular momentum of the electron.
 
*The '''torque experienced by a current loop''' in an external magnetic field is defined by the cross product of the magnetic dipole moment and the external magnetic field:
 
:::<math>\boldsymbol{\tau} = \boldsymbol{\mu} \times \boldsymbol{B}</math>
 
*The '''magnetic potential energy of the loop''' is defined as the negative dot product of the magnetic dipole moment and the external magnetic field:
 
[[File:MagneticMomentEnergy.gif|right|300px]]
 
:::<math>U(\theta) = -\boldsymbol{\mu}\cdot\boldsymbol{B} = -\mu B \cos(\theta)</math>
 
::::Here, <math>\theta</math> is the angle between the magnetic moment and the external magnetic field.
 
:*For example, if <math>\theta = 0^\circ</math>, then
 
:::<math>U(0^\circ) = -\mu B \cos(0^\circ) = -\mu B</math>
 
:*For <math>\theta = 180^\circ</math>, we get
 
:::<math>U(180^\circ) = -\mu B \cos(180^\circ) = \mu B</math>
 
:::This shows that when the magnetic moment is aligned with the magnetic field, the loop is at its lowest magnetic potential energy. When the two directions are anti-parallel, the loop is at its highest magnetic potential energy.


<math> \mathbf{B} = \frac{\mu_0}{4\pi}\frac{2\mu}{R^3}</math>
===Computational Model===
The following GlowScript model gives a simple visualization of the magnetic field produced by a current loop. The arrows represent sample magnetic field vectors along the axis of the loop.


===A Computational Model===
<glowscript>
from vpython import *
R = 0.1
I = 2
mu = I*pi*R**2


[[File:Magnetic dipole copy.jpg]]
ring = ring(pos=vector(0,0,0), axis=vector(0,0,1), radius=R)


This image shows how the magnetic field around a loop changes at each location but on axis with the center of the loop it points in one direction.
# Visualize sample magnetic field vectors
for z in range(-5,6):
    B = vector(0,0, (mu)/(R**2+z**2)**(3/2))
    arrow(pos=vector(0,0,z*0.05), axis=B*0.1, color=color.blue)
</glowscript>


==Examples==
==Examples==
Line 34: Line 87:


===Simple===
===Simple===
What is the magnetic dipole moment of a 1200 turn circular coil that has a radius of 10 cm and carries a current of 2 amperes?
A <math>1,200</math> turn circular coil of radius <math>10 \text{ cm}</math> carries <math>2 \text{ Amps}</math>.


Solution: µ=NIA    N=1200  I = 2    A = π0.1^2                 
:'''a) What is the magnitude of the magnetic dipole moment of the coil. What direction does it point?'''


        So µ = (1200)(2)(0.0314) = 75.4 Am^2
::We can use our [[Magnetic Dipole Moment#Mathematical Model| Mathematical Model]] to answer this:
 
:::<math>\mu = N I A = N I \cdot \pi R^2</math>
 
::In this problem, the following values have been specified for us:
 
:::<math>N = 1,200 \text{ turns or loops}</math>
 
:::<math>R = 0.1 \text{ m}</math>
 
:::<math>I = 2 \text{ Amps}</math>
 
::Therefore, <math>\mu</math> is:
 
:::<math>\mu = 1,200 \times 2 \times \pi \times (0.1)^2 = 75.4 \text{ A} \cdot \text{m}^2</math>
 
===Middling===
A current loop with a radius of <math>2 \text{ m}</math> and a current of <math>5 \text{ Amps}</math> is in an external magnetic field. This magnetic field is given by:
 
::<math>\mathbf{B_{ext}} = (x, y, z) = (1, 1, 1) = \sqrt{3} \left(\frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}} \right)</math>
 
A unit vector normal to the area of the current loop (and has a direction consistent with the right-hand rule) is given by:
 
::<math>\mathbf{\hat n} = (x, y, z) = \left(-\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}\right)</math>
 
:'''a) What is the magnetic potential energy of the current loop?'''
 
::The magnetic potential energy of a current loop is defined as:
 
:::<math>U(\theta) = - \boldsymbol{\mu} \bullet \mathbf{B_{ext}} = - [\mu B_{ext}] \ \text{cos}(\theta) \ \mathbf{(1)}</math>
 
::Since <math>\mathbf{\hat n}</math> is consistent with the direction of <math>\boldsymbol{\mu}</math> and has a magnitude of <math>1</math>, we can define <math>\boldsymbol{\mu}</math> as the its magnitude times its unit direction:
 
:::<math>\boldsymbol{\mu} = \mu \mathbf{\hat n} \ \mathbf{(2)}</math>
 
::We know <math>\mu</math> is:
 
:::<math>\mu = I A = I \cdot \pi R^2 \ \mathbf{(3)}</math>
 
::Putting '''2''' and '''3''' together shows:
 
:::<math>\boldsymbol{\mu} = \left( I \cdot \pi R^2 \right) \mathbf{\hat n}</math>
 
::Plugging this into '''1''' gives:
 
:::<math>U(\theta) = - \left( I \cdot \pi R^2 \right) \mathbf{\hat n} \bullet \mathbf{B_{ext}}</math>
 
::The dot product is calculated as:
 
:::<math>\begin{align}
\mathbf{\hat n} \bullet \mathbf{B_{ext}} & = \left(-\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}\right) \bullet \sqrt{3} \left(\frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}} \right) \\
& =  \sqrt{3} \left(-\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}\right) \bullet \left(\frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}} \right) \\
& = \sqrt{3} \Biggr[ \left(-\frac{1}{\sqrt{3}} \cdot \frac{1}{\sqrt{3}} \right) + \left(-\frac{1}{\sqrt{3}} \cdot \frac{1}{\sqrt{3}} \right) + \left(-\frac{1}{\sqrt{3}} \cdot \frac{1}{\sqrt{3}} \right) \Biggr] \\
& = \sqrt{3}  \Biggr[ -\frac{1}{3} -\frac{1}{3} -\frac{1}{3} \Biggr] \\
& = \sqrt{3} \Bigr[- 1 \Bigr] \\
\mathbf{\hat n} \bullet \mathbf{B_{ext}} & = -\sqrt{3} \\
\end{align}</math>
 
::We can now find the magnetic potential energy of the loop:
 
:::<math>U(\theta) = \sqrt{3} \times 5 \times \pi \times (2)^2 = 20 \sqrt{3} \pi \approx 108.83 \text{ J}</math>
 
::Keep in mind we could have found the angle between <math>\mathbf{\hat n}</math> and <math>\mathbf{B_{ext}}</math> and used
 
:::<math>U(\theta) = - [\mu B_{ext}] \ \text{cos}(\theta)</math>
 
::to find the magnetic potential energy. The angle found would be <math>\pm 180&deg;</math>, corresponding to an anti-parallel relation between the magnetic field and the magnetic moment, and therefore a max potential energy.


===Difficult===
===Difficult===
[[File:MagneticMoment.png|right|400px]]
A thin uniform ring of radius <math>R</math> and mass <math>M</math>, carrying a uniformly distributed charge <math>+Q</math>, rotates clockwise (as seen from above) about its axis with a constant angular speed <math>\omega</math>. It lies in the xy-plane.


What is the magnetic field at a point 3m away from a coil that has 250 turns, a radius of 2m and a current of 4 amperes running through it?
:'''a) Find the ratio of the magnitude of the ring's magnetic dipole moment <math>(\mu)</math> to its angular momentum <math>(L)</math>.'''


First step is to calculate the dipole moment using µ=NIA. In this situation N=250, A = 4^2π, and I=4.  (250)(4π)(4)= 12566.4Am^2
::The current in the ring can be calculated using the period of the rotation <math>(T)</math> and the charge on the ring as:


Then plug this into our magnetic field equation <math> \mathbf{B} = \frac{\mu_0}{4\pi}\frac{2\mu}{R^3}</math> and we get
:::<math>I = \frac{dQ}{dt} = \frac{\Delta Q}{\Delta t} = \frac{Q}{T} = \frac{Q \omega}{2 \pi}</math>
::The magnetic moment is:


B = 1e-7((2*12566.4)/9) which gives us B=1.4e-4
:::<math>\mu = I A = \frac{Q \omega}{2 \pi} \cdot \pi R^2 = \frac{1}{2} QωR^2</math>
 
::The angular momentum is calculated as the loops rotational inertia (moment of inertia) times its angular speed. The rotational inertia of a ring is given by <math>m R^2</math>:
 
:::<math> L = I \omega = m R^2 \omega</math>
 
::Therefore, the ratio is:
 
:::<math>\frac{\mu}{L} = \frac{\frac{1}{2}  Q \omega R^2}{m R^2 \omega} = \frac{Q}{2m}</math>
 
:'''b) What is the torque experienced by the ring if an external magnetic field described by <math>\mathbf{B} = (2, 4, -5)</math> is applied to the ring?'''
 
::We know the torque experienced by a current carrying loop is described by:
 
:::<math>\boldsymbol{\tau} = \boldsymbol{\mu} \times \mathbf{B} \ \mathbf{(1)}</math>
 
::The magnitude of <math>\boldsymbol{\mu}</math> was found to be <math>\frac{1}{2} Q \omega R^2</math> in the previous part. To find the direction of <math>\boldsymbol{\mu}</math>, we consider the direction of the current and where the ring lies. Since the ring is lying in the xy-plane and rotating clockwise, using the right-hand rule shows <math>\boldsymbol{\mu}</math> must point in the <math>-z</math> direction. A unit vector in this direction can be described as <math>\mathbf{\hat n} = (0, 0, -1)</math>.
 
::Thus, <math>\boldsymbol{\mu}</math> can be described by:
 
:::<math>\boldsymbol{\mu} = \mu \mathbf{\hat n}</math>
 
::Plugging this into '''1''' shows:
 
:::<math>\begin{align}
\boldsymbol{\tau} & = \mu \bigr[ \mathbf{\hat n} \times \mathbf{B} \bigr] \\
& = \mu \bigr[(0, 0, -1) \times (2, 4, -5) \bigr] \\
& = \mu \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 0 & 0 & -1 \\ 2 & 4 & -5 \end{vmatrix} \\
& = \mu \biggr[ \ \mathbf{i} \begin{vmatrix} 0 & -1 \\ 4 & -5 \end{vmatrix} - \mathbf{j} \begin{vmatrix} 0 & -1 \\ 2 & -5 \end{vmatrix} + \mathbf{k} \begin{vmatrix} 0 & 0 \\ 2 & 4 \end{vmatrix}  \biggr] \\
& = \mu \biggr[\mathbf{i} \bigr[(0) - (-4) \bigr] - \mathbf{j} \bigr[(0) - (-2) \bigr] + \mathbf{k} \bigr[(0) - (0) \bigr] \biggr] \\
& = \mu \bigr[4 \mathbf{i} - 2 \mathbf{j} + 0 \mathbf{k} \bigr] \\
& = \frac{1}{2} Q \omega R^2 \cdot (4, -2, 0) \\
& = Q \omega R^2 \cdot (2, -1, 0) \\
\boldsymbol{\tau} & = \sqrt{5} \cdot Q \omega R^2 \left(\frac{2}{\sqrt{5}}, -\frac{1}{\sqrt{5}}, 0 \right)
\end{align}</math>
 
==Connectedness==
Magnetic dipole moment connects to many topics in E&M:
 
* Used in torque and potential energy problems involving loops and magnets
* Basis of ferromagnetism and MRI imaging
* Fundamental idea behind solenoids, coils, motors and inductors
* Relates to Ampere’s Law and Maxwell’s Equations
* Connects to quantum magnetic moments (spin, Bohr magneton)


==History==
==History==


The study of magnetism dates far back in time but it was not until 1825 that Andre Ampere showed that magnetism is due to perpetually flowing current through loops of wire. He then went on to derive Amperes force law which connected the magnetic fields to electric currents. This equation was then further adapted to simplify the on axis magnetic field generated by a loop of current to use the magnetic dipole moment.
The study of magnetism dates far back in time, but it was not until 1825 that Andre Ampere showed that magnetism is due to perpetually flowing current through loops of wire. He then went on to derive Ampere's Law, which connected magnetic fields to electric currents. This equation was then further adapted to simplify the on axis magnetic field generated by a loop of current to use the magnetic dipole moment.
 
At first, people thought magnets, both natural and man-made, are made up of countless magnetic dipoles, each consisting of positive and negative magnetic charges separated by a small distance. This consequently defined the concept of magnetic dipole moment, a vector, pointing from the negative magnetic charge to the positive magnetic charge. When scientists discovered that magnetic charges, or "magnetic monopoles" do not exist, the magnetic properties of matter were believed to be generated by the alignment of molecular currents. Since then, magnetic dipole moment has been redefined using current
<math>I</math>, allowing the idea of magnetic dipole to remain.


At first, people thought magnets, both natural and man-made, are made up of countless magnetic dipoles, each consists of a positive and a negative magnetic charges separate by a small distance s. This consequently defined the concept of magnetic dipole moment, a vector, pointing from the negative magnetic charge to positive charge. When scientists discovered that magnetic charges, or "magnetic monopoles" do not exist, instead the magnetic properties of matters are generated by the alignment of molecular currents. Since then, magnetic dipole moment is redefined using current I, allowing the idea of magnetic dipole to remain.
===Real-World Applications===
* MRI machines rely on magnetic dipole alignment in hydrogen atoms
* Credit card strips encode data using magnetic dipoles
* Electric motors generate torque from μ × B
* Earth's magnetic field acts as a planetary dipole moment


== See also ==
== See also ==
Line 62: Line 236:
===Further reading===
===Further reading===


Lecture on magnetic dipole moment [http://www.phys.ufl.edu/~acosta/phy2061/lectures/MagneticDipoles.pdf]
*[http://www.phys.ufl.edu/~acosta/phy2061/lectures/MagneticDipoles.pdf Lecture PDF on Magnetic Dipole Moment]
*[https://en.wikipedia.org/wiki/Magnetic_dipole Wikipedia Magnetic dipole]
*[http://mriquestions.com/magnetic-dipole-moment.html MRI Questions Magnetic Moment]
*http://web.mit.edu/8.02t/www/mitxmaterials/Presentations/Presentation_W07D2.pdf MIT PDF Magnetic Moment]


===External links===
===External links===


Internet resources on magnetic dipole moment [http://hyperphysics.phy-astr.gsu.edu/hbase/magnetic/magmom.html]
*[http://hyperphysics.phy-astr.gsu.edu/hbase/magnetic/magmom.html HyperPhysics Magnetic Moment]
*[https://www.youtube.com/watch?v=H1I9-VjCc-Y Bozeman Science Magnetic Dipole Moment]


==References==
==References==
 
* [http://www.phys.ufl.edu/~acosta/phy2061/lectures/MagneticDipoles.pdf Lecture PDF on Magnetic Dipole Moment]
This section contains the the references you used while writing this page
* [http://hyperphysics.phy-astr.gsu.edu/hbase/magnetic/magmom.html HyperPhysics: Magnetic Moment]
* [http://mriquestions.com/magnetic-dipole-moment.html MRI Questions: Magnetic Dipole Moment]


[[Category:Fields]]
[[Category:Fields]]

Latest revision as of 05:08, 22 April 2026

'

Chris Vuong - Spring 2026

Main Idea

A magnetic dipole moment describes the strength and orientation of a current loop as a magnetic source. For a loop carrying current, the magnetic dipole moment is a vector that points perpendicular to the plane of the loop, with direction determined by the right-hand rule.

The magnitude of the magnetic dipole moment is

[math]\displaystyle{ \mu = IA }[/math]

where [math]\displaystyle{ I }[/math] is the current and [math]\displaystyle{ A }[/math] is the area enclosed by the loop. For a coil with [math]\displaystyle{ N }[/math] turns, the magnitude becomes

[math]\displaystyle{ \mu = NIA }[/math]

The magnetic dipole moment is useful because it helps predict how a loop behaves in an external magnetic field. In particular, it is used to calculate torque and magnetic potential energy. Current loops, bar magnets, and even atoms can often be modeled as magnetic dipoles.

Mathematical Model

The magnetic dipole moment is represented by the vector [math]\displaystyle{ \boldsymbol{\mu} }[/math]. Its magnitude is equal to the current in the loop multiplied by the area enclosed by the loop. For a circular loop, the area is [math]\displaystyle{ \pi R^2 }[/math]. The direction of [math]\displaystyle{ \boldsymbol{\mu} }[/math] is given by the right-hand rule. The SI units of magnetic dipole moment are ampere-meters squared.

[math]\displaystyle{ |\boldsymbol{\mu}| = \mu = IA = I\pi R^2 }[/math]

For a coil with [math]\displaystyle{ N }[/math] turns, the magnetic dipole moment becomes

[math]\displaystyle{ |\boldsymbol{\mu}| = \mu = NIA }[/math]
[math]\displaystyle{ \begin{align} B & = \frac{\mu_0}{4 \pi} \frac{2 \pi I R^2}{(z^2 + R^2)^{3/2}} \text{, where } z = 0 \\ & = \frac{\mu_0}{4 \pi} \frac{2 \pi I R^2}{R^3} \text{, and the } R^2 \text{ cancels} \\ & = \frac{\mu_0}{4 \pi} \frac{2 \pi I}{R} \\ & = \frac{\mu_0}{4 \pi} \frac{2 \pi \frac{\mu}{\pi R^2}}{R} \text{, where } I = \frac{\mu}{\pi R^2} \\ B & = \frac{\mu_0}{4 \pi} \frac{2 \mu}{R^3} \end{align} }[/math]
  • The magnitude of the magnetic moment [math]\displaystyle{ \mu }[/math] of an electron in circular orbit is given by
[math]\displaystyle{ |\boldsymbol{\mu}| = \mu = IA = -\frac{e}{2m_e}L }[/math]
where [math]\displaystyle{ L }[/math] is the magnitude of the angular momentum of the electron.
  • The torque experienced by a current loop in an external magnetic field is defined by the cross product of the magnetic dipole moment and the external magnetic field:
[math]\displaystyle{ \boldsymbol{\tau} = \boldsymbol{\mu} \times \boldsymbol{B} }[/math]
  • The magnetic potential energy of the loop is defined as the negative dot product of the magnetic dipole moment and the external magnetic field:
[math]\displaystyle{ U(\theta) = -\boldsymbol{\mu}\cdot\boldsymbol{B} = -\mu B \cos(\theta) }[/math]
Here, [math]\displaystyle{ \theta }[/math] is the angle between the magnetic moment and the external magnetic field.
  • For example, if [math]\displaystyle{ \theta = 0^\circ }[/math], then
[math]\displaystyle{ U(0^\circ) = -\mu B \cos(0^\circ) = -\mu B }[/math]
  • For [math]\displaystyle{ \theta = 180^\circ }[/math], we get
[math]\displaystyle{ U(180^\circ) = -\mu B \cos(180^\circ) = \mu B }[/math]
This shows that when the magnetic moment is aligned with the magnetic field, the loop is at its lowest magnetic potential energy. When the two directions are anti-parallel, the loop is at its highest magnetic potential energy.

Computational Model

The following GlowScript model gives a simple visualization of the magnetic field produced by a current loop. The arrows represent sample magnetic field vectors along the axis of the loop.

<glowscript> from vpython import * R = 0.1 I = 2 mu = I*pi*R**2

ring = ring(pos=vector(0,0,0), axis=vector(0,0,1), radius=R)

  1. Visualize sample magnetic field vectors

for z in range(-5,6):

   B = vector(0,0, (mu)/(R**2+z**2)**(3/2))
   arrow(pos=vector(0,0,z*0.05), axis=B*0.1, color=color.blue)

</glowscript>

Examples

Simple

A [math]\displaystyle{ 1,200 }[/math] turn circular coil of radius [math]\displaystyle{ 10 \text{ cm} }[/math] carries [math]\displaystyle{ 2 \text{ Amps} }[/math].

a) What is the magnitude of the magnetic dipole moment of the coil. What direction does it point?
We can use our Mathematical Model to answer this:
[math]\displaystyle{ \mu = N I A = N I \cdot \pi R^2 }[/math]
In this problem, the following values have been specified for us:
[math]\displaystyle{ N = 1,200 \text{ turns or loops} }[/math]
[math]\displaystyle{ R = 0.1 \text{ m} }[/math]
[math]\displaystyle{ I = 2 \text{ Amps} }[/math]
Therefore, [math]\displaystyle{ \mu }[/math] is:
[math]\displaystyle{ \mu = 1,200 \times 2 \times \pi \times (0.1)^2 = 75.4 \text{ A} \cdot \text{m}^2 }[/math]

Middling

A current loop with a radius of [math]\displaystyle{ 2 \text{ m} }[/math] and a current of [math]\displaystyle{ 5 \text{ Amps} }[/math] is in an external magnetic field. This magnetic field is given by:

[math]\displaystyle{ \mathbf{B_{ext}} = (x, y, z) = (1, 1, 1) = \sqrt{3} \left(\frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}} \right) }[/math]

A unit vector normal to the area of the current loop (and has a direction consistent with the right-hand rule) is given by:

[math]\displaystyle{ \mathbf{\hat n} = (x, y, z) = \left(-\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}\right) }[/math]
a) What is the magnetic potential energy of the current loop?
The magnetic potential energy of a current loop is defined as:
[math]\displaystyle{ U(\theta) = - \boldsymbol{\mu} \bullet \mathbf{B_{ext}} = - [\mu B_{ext}] \ \text{cos}(\theta) \ \mathbf{(1)} }[/math]
Since [math]\displaystyle{ \mathbf{\hat n} }[/math] is consistent with the direction of [math]\displaystyle{ \boldsymbol{\mu} }[/math] and has a magnitude of [math]\displaystyle{ 1 }[/math], we can define [math]\displaystyle{ \boldsymbol{\mu} }[/math] as the its magnitude times its unit direction:
[math]\displaystyle{ \boldsymbol{\mu} = \mu \mathbf{\hat n} \ \mathbf{(2)} }[/math]
We know [math]\displaystyle{ \mu }[/math] is:
[math]\displaystyle{ \mu = I A = I \cdot \pi R^2 \ \mathbf{(3)} }[/math]
Putting 2 and 3 together shows:
[math]\displaystyle{ \boldsymbol{\mu} = \left( I \cdot \pi R^2 \right) \mathbf{\hat n} }[/math]
Plugging this into 1 gives:
[math]\displaystyle{ U(\theta) = - \left( I \cdot \pi R^2 \right) \mathbf{\hat n} \bullet \mathbf{B_{ext}} }[/math]
The dot product is calculated as:
[math]\displaystyle{ \begin{align} \mathbf{\hat n} \bullet \mathbf{B_{ext}} & = \left(-\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}\right) \bullet \sqrt{3} \left(\frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}} \right) \\ & = \sqrt{3} \left(-\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}\right) \bullet \left(\frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}} \right) \\ & = \sqrt{3} \Biggr[ \left(-\frac{1}{\sqrt{3}} \cdot \frac{1}{\sqrt{3}} \right) + \left(-\frac{1}{\sqrt{3}} \cdot \frac{1}{\sqrt{3}} \right) + \left(-\frac{1}{\sqrt{3}} \cdot \frac{1}{\sqrt{3}} \right) \Biggr] \\ & = \sqrt{3} \Biggr[ -\frac{1}{3} -\frac{1}{3} -\frac{1}{3} \Biggr] \\ & = \sqrt{3} \Bigr[- 1 \Bigr] \\ \mathbf{\hat n} \bullet \mathbf{B_{ext}} & = -\sqrt{3} \\ \end{align} }[/math]
We can now find the magnetic potential energy of the loop:
[math]\displaystyle{ U(\theta) = \sqrt{3} \times 5 \times \pi \times (2)^2 = 20 \sqrt{3} \pi \approx 108.83 \text{ J} }[/math]
Keep in mind we could have found the angle between [math]\displaystyle{ \mathbf{\hat n} }[/math] and [math]\displaystyle{ \mathbf{B_{ext}} }[/math] and used
[math]\displaystyle{ U(\theta) = - [\mu B_{ext}] \ \text{cos}(\theta) }[/math]
to find the magnetic potential energy. The angle found would be [math]\displaystyle{ \pm 180&deg; }[/math], corresponding to an anti-parallel relation between the magnetic field and the magnetic moment, and therefore a max potential energy.

Difficult

A thin uniform ring of radius [math]\displaystyle{ R }[/math] and mass [math]\displaystyle{ M }[/math], carrying a uniformly distributed charge [math]\displaystyle{ +Q }[/math], rotates clockwise (as seen from above) about its axis with a constant angular speed [math]\displaystyle{ \omega }[/math]. It lies in the xy-plane.

a) Find the ratio of the magnitude of the ring's magnetic dipole moment [math]\displaystyle{ (\mu) }[/math] to its angular momentum [math]\displaystyle{ (L) }[/math].
The current in the ring can be calculated using the period of the rotation [math]\displaystyle{ (T) }[/math] and the charge on the ring as:
[math]\displaystyle{ I = \frac{dQ}{dt} = \frac{\Delta Q}{\Delta t} = \frac{Q}{T} = \frac{Q \omega}{2 \pi} }[/math]
The magnetic moment is:
[math]\displaystyle{ \mu = I A = \frac{Q \omega}{2 \pi} \cdot \pi R^2 = \frac{1}{2} QωR^2 }[/math]
The angular momentum is calculated as the loops rotational inertia (moment of inertia) times its angular speed. The rotational inertia of a ring is given by [math]\displaystyle{ m R^2 }[/math]:
[math]\displaystyle{ L = I \omega = m R^2 \omega }[/math]
Therefore, the ratio is:
[math]\displaystyle{ \frac{\mu}{L} = \frac{\frac{1}{2} Q \omega R^2}{m R^2 \omega} = \frac{Q}{2m} }[/math]
b) What is the torque experienced by the ring if an external magnetic field described by [math]\displaystyle{ \mathbf{B} = (2, 4, -5) }[/math] is applied to the ring?
We know the torque experienced by a current carrying loop is described by:
[math]\displaystyle{ \boldsymbol{\tau} = \boldsymbol{\mu} \times \mathbf{B} \ \mathbf{(1)} }[/math]
The magnitude of [math]\displaystyle{ \boldsymbol{\mu} }[/math] was found to be [math]\displaystyle{ \frac{1}{2} Q \omega R^2 }[/math] in the previous part. To find the direction of [math]\displaystyle{ \boldsymbol{\mu} }[/math], we consider the direction of the current and where the ring lies. Since the ring is lying in the xy-plane and rotating clockwise, using the right-hand rule shows [math]\displaystyle{ \boldsymbol{\mu} }[/math] must point in the [math]\displaystyle{ -z }[/math] direction. A unit vector in this direction can be described as [math]\displaystyle{ \mathbf{\hat n} = (0, 0, -1) }[/math].
Thus, [math]\displaystyle{ \boldsymbol{\mu} }[/math] can be described by:
[math]\displaystyle{ \boldsymbol{\mu} = \mu \mathbf{\hat n} }[/math]
Plugging this into 1 shows:
[math]\displaystyle{ \begin{align} \boldsymbol{\tau} & = \mu \bigr[ \mathbf{\hat n} \times \mathbf{B} \bigr] \\ & = \mu \bigr[(0, 0, -1) \times (2, 4, -5) \bigr] \\ & = \mu \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 0 & 0 & -1 \\ 2 & 4 & -5 \end{vmatrix} \\ & = \mu \biggr[ \ \mathbf{i} \begin{vmatrix} 0 & -1 \\ 4 & -5 \end{vmatrix} - \mathbf{j} \begin{vmatrix} 0 & -1 \\ 2 & -5 \end{vmatrix} + \mathbf{k} \begin{vmatrix} 0 & 0 \\ 2 & 4 \end{vmatrix} \biggr] \\ & = \mu \biggr[\mathbf{i} \bigr[(0) - (-4) \bigr] - \mathbf{j} \bigr[(0) - (-2) \bigr] + \mathbf{k} \bigr[(0) - (0) \bigr] \biggr] \\ & = \mu \bigr[4 \mathbf{i} - 2 \mathbf{j} + 0 \mathbf{k} \bigr] \\ & = \frac{1}{2} Q \omega R^2 \cdot (4, -2, 0) \\ & = Q \omega R^2 \cdot (2, -1, 0) \\ \boldsymbol{\tau} & = \sqrt{5} \cdot Q \omega R^2 \left(\frac{2}{\sqrt{5}}, -\frac{1}{\sqrt{5}}, 0 \right) \end{align} }[/math]

Connectedness

Magnetic dipole moment connects to many topics in E&M:

  • Used in torque and potential energy problems involving loops and magnets
  • Basis of ferromagnetism and MRI imaging
  • Fundamental idea behind solenoids, coils, motors and inductors
  • Relates to Ampere’s Law and Maxwell’s Equations
  • Connects to quantum magnetic moments (spin, Bohr magneton)

History

The study of magnetism dates far back in time, but it was not until 1825 that Andre Ampere showed that magnetism is due to perpetually flowing current through loops of wire. He then went on to derive Ampere's Law, which connected magnetic fields to electric currents. This equation was then further adapted to simplify the on axis magnetic field generated by a loop of current to use the magnetic dipole moment.

At first, people thought magnets, both natural and man-made, are made up of countless magnetic dipoles, each consisting of positive and negative magnetic charges separated by a small distance. This consequently defined the concept of magnetic dipole moment, a vector, pointing from the negative magnetic charge to the positive magnetic charge. When scientists discovered that magnetic charges, or "magnetic monopoles" do not exist, the magnetic properties of matter were believed to be generated by the alignment of molecular currents. Since then, magnetic dipole moment has been redefined using current [math]\displaystyle{ I }[/math], allowing the idea of magnetic dipole to remain.

Real-World Applications

  • MRI machines rely on magnetic dipole alignment in hydrogen atoms
  • Credit card strips encode data using magnetic dipoles
  • Electric motors generate torque from μ × B
  • Earth's magnetic field acts as a planetary dipole moment

See also

Here are some more resources with extra information on magnetic dipole moments.

Further reading

External links

References