Question

In: Physics

In class I demonstrated a little gizmo that allows the levitation of a little mylar shape....

In class I demonstrated a little gizmo that allows the levitation of a little mylar shape.

Estimate (to an order of magnitude or so) the charge of the mylar shape, expressed in

a number of extra (or missing) electrons. Then give the approximate fraction of the

total number of electrons in the mylar shape that this comprises.

Some notes to help:

Balance between repulsive electric force and gravity is the key thing here. Neglect

air resistance – even though it’s significant, it’s nonetheless zero when the thing

is levitating.

Assume the mylar is 0.1mm thick and has a density of 1 g/cm^3. The piece I used

was around 10×5 cm.

Please be clear with diagrams and units.


The amount of external field is not given in the problem. All that is given to solve the problem is written here. The answer can be an estimation, doesnt have to be exact.

Solutions

Expert Solution

The free body diagram of the force on the floating sheet is given below:

When this two forces becomes equal, the sheet floats. Now if we know the gravitational force on the sheet, the electrostatic force is equal to that. For units we convert everything into SI.

Total mass of the sheet = its volume * its density = area*thickness*density =

F =

Gravitational Force on the sheet = Electrostatic force on the sheet =

As in many cases of electrostatic repulsion, charges repel in pair. So we can make a liberated guess is that it gets repelled by the field caused by the same magnitude of charge Q and a standard repulsion distance r = 0.3m is assumed, So the Coulomb's law in this case is,

(k is Coulomb's constant)

so the estimated number of extra (or missing) electrons = Q/charge of a single electron = 4.375*1012 .

______________________________________________________________________

Mylar is made of polyethylene terephthalate, (C10H12O6), which has approximate molar mass of 228g = 0.228kg. and a molecule of that contains 12*10 + 12 + 8*6 = 180 electrons

So 0.228kg mylar contains roughly 6.023*1023 atoms,

Therefore 0.005kg will contain = mylar molecules, so

electrons,

So the fraction of of extra (or missing) electrons is =

________________________________________________________________

Note: the determined charge without knowing the filed is somewhat of a crude estimation. Also mylar has no constant molecular weight, the quantity is estimated from its mother-material polyethylene terephthalate. It shows a far fetched assumption, but helps to get a picture and idea around this concept.

_______________________________________________________________


Related Solutions

A trombone is one of the musical instruments demonstrated in class. For this problem, treat a...
A trombone is one of the musical instruments demonstrated in class. For this problem, treat a trombone as a pipe, open at one end, with a length of 2.7 m when the slide is all the way in. Assume the speed of sound in air is 343 m/s. Part A: Music What class of musical instruments does the trombone belong to? What is the ultimate source of vibrations for a trombone? How does a musician change the pitch of a...
Implement the Shape hierarchy -- create an abstract class called Shape, which will be the parent...
Implement the Shape hierarchy -- create an abstract class called Shape, which will be the parent class to TwoDimensionalShape and ThreeDimensionalShape. The classes Circle, Square, and Triangle should inherit from TwoDimensionalShape, while Sphere, Cube, and Tetrahedron should inherit from ThreeDimensionalShape. Each TwoDimensionalShape should have the methods getArea() and getPerimeter(), which calculate the area and perimeter of the shape, respectively. Every ThreeDimensionalShape should have the methods getArea() and getVolume(), which respectively calculate the surface area and volume of the shape. Every...
In garden peas, inflated pod shape (I) is dominant to pinched pod shape (i) and yellow...
In garden peas, inflated pod shape (I) is dominant to pinched pod shape (i) and yellow pea colour (Y) is dominant to green (y) pea colour. Plants heterozygous for these characteristics were selfed (note that this is not a test cross), and the following numbers of phenotypes were seen in the progeny: 556 inflated, yellow; 193 inflated green; 184 pinched, yellow; 61 pinched green Test the data for the involvement of two independently assorting genes using the Chi-square test (don’t...
Problem #1 : Using separation of variables and the formalism demonstrated in class, find the general...
Problem #1 : Using separation of variables and the formalism demonstrated in class, find the general solution to the Helmholtz equation (also known as the time independent wave equation) : ∇^2 F + k^2 F = 0 Assume that k is a real number. For clarification, the general solution is the solution in the case where boundary conditions are not specified. Problem #2 : Express the following functions as an infinite Fourier sine series using sin(nπx/a) a)f(x) = x b)f(x)...
Java Write a Payroll class as demonstrated in the following UML diagram. Member variables of the...
Java Write a Payroll class as demonstrated in the following UML diagram. Member variables of the class are: NUM_EMPLOYEES: a constant integer variable to hold the number of employees. employeeId. An array of integers to hold employee identification numbers. hours. An array of integers to hold the number of hours worked by each employee payRate. An array of doubles to hold each employee’s hourly pay rate wages. An array of seven doubles to hold each employee’s gross wages The class...
Write a OOP class called BookList that uses a Book class and allows multiple books to...
Write a OOP class called BookList that uses a Book class and allows multiple books to be entered into a BookList object. Include normally useful methods and boolean addBook(Book b), Book searchBook(String title, String author). addBook returns true if b is successfully added to the list. searchBook returns a book matching either the title or author from the current list. You do not need to write Book (assume there are suitable constructors and methods) or any test code (main). You...
In C++ Create an abstract class called Shape Shape should have the following pure virtual functions:...
In C++ Create an abstract class called Shape Shape should have the following pure virtual functions: getArea() setArea() printArea() Create classes to inherit from the base class Circle Square Rectangle Both implement the functions derived from the abstract base class AND must have private variables and functions unique to them like double Radius double length calculateArea() Use the spreadsheet info.txt read in information about the circle, rectangle, or square text file: circle   3.5   square   3   rectangle   38   36 circle   23  ...
Create a class (Shapes) that prompts the user to select a shape to be drawn on...
Create a class (Shapes) that prompts the user to select a shape to be drawn on the screen. Objects: Circle, X, box, box with an x inside, or any other object of your choice. Depending on the user’s choice, you will then ask for the number of rows, columns or any requirements needed to draw the shape. Finally, you will display the shape selected by the user to the screen. Your class should have at least one instance variable. Your...
This assignment allows us to view several historical/memorable occurrences in the healthcare field that have/will shape...
This assignment allows us to view several historical/memorable occurrences in the healthcare field that have/will shape our future landscape 400,000 COLUMBIA SURGICAL PATIENT RECORDS BREACHED On February 18, Columbia Surgical Specialists of Spokane reported a breach to the Department of Health and Human Services, which impacted 400,000 patients. Currently, there’s no public breach notice on the Columbia Surgical site, so not much is known as to the extent of the attack. The cyberattack is being reported as ransomware, which hit...
Language: Python Implement the Book class as demonstrated below. You should not change the Book methods...
Language: Python Implement the Book class as demonstrated below. You should not change the Book methods and implementation as provided. The docstrings in the template contain descriptions of each method. >>> b=Book ( ' Code' , 'Charles Ptzold' 'Computing' , 2001) >>> b Book ( ' Code' , 'Charles Ptzold' 'Computing' , 2001) >>> str (b) ' Code : Charles Ptzold: Computing: 2001 ' >>> b. getTitle ( ) ' Code ' >>> b. getAuthor() ' Charles Ptzold' >>> b....
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT