Search

astrophysics (85)biophysics (18)chemistry (24)electric field (71)electric current (76)gravitational field (81)hydromechanics (146)nuclear physics (44)oscillations (57)quantum physics (31)magnetic field (43)mathematics (89)mechanics of a point mass (298)gas mechanics (87)mechanics of rigid bodies (221)molecular physics (72)geometrical optics (78)wave optics (65)other (167)relativistic physics (37)statistical physics (21)thermodynamics (155)wave mechanics (51)

other

(8 points)6. Series 28. Year - E. alchemial

On Discworld it is not unusual to be an alchemist. So we have decided that you should try it. Imagine that you are sitting an exam to enter the guild of alchemists. Together with the brochure of the series you got three wrapped pieces of metal. They are thin plates of metal so be careful with them so that yu won't destroy them and ideally don't touch them. It is your task to find out which (precious?) metals we sent you. We don't require you return the metals and so you can use whatever procedures to determine that, even destructive processes but we shall acknowledge only the sufficiently scientific ones. Your solution will be the description of the procedure required and to determine as precisely as possible the cmposition of the individual specimens and you should menntion the label that was on their packaging. Don't forget that it is even good to determine what metals they aren't.

Note If someone wouldlike to become a new participant in this seminar and they would like to solve this task then they should write an email to alchymie@fykos.cz and they will recieve the package from a week later up to 10 days.

Karel wanted to send out the bought gold, platinum and palladium.

(6 points)6. Series 28. Year - S. mixing

Copy the function $iterace_stanMap$ from the series and using the following commands choose ten very close initial conditions for some $K$.

K=…;

X01=…;

Y01=…;

Iter1 = iterace_stanMap(X01,Y01,1000,K);

X10=…;

Y10=…;

Iter10 = iterace_stanMap(X10,Y10,1000,K);

</pre> Between $Iter1$ and $Iter10$ there are hidden a thousand iterations of given initial conditions using the Standard map. As to see how the ten points look after the $nth$ iteration, you have to write

n=…;

plot(Iterace1(n,1),Iterace1(n,2),„o“,…,Iterace10(n,1),Iterace10(n,2),„o“)

xlabel („x“);

ylabel („y“);

axis([0,2*pi,-pi,pi],„square“);

refresh;

</pre> we write $"o"$ into $plot$ so that the points will draw themselves as circles. The rest of the commands is then included so that the graph will include the whole square and that it would have the correct labels.

  • Set some strong kicks, $Kat$ least approx. -0,6, and place the 10 initial conditions very close to each other somewhere in the middle of the chaotic region (ie for example „on the tip of a pen“). How do the ten iteration's distances with respect to each other change? Document on graphs. How do the ten initially very close initial conditions change after 1 000 iterations? What can we learn from this about the „willingness to mix“of the given area?
  • Take again a large kick and set your ten initial conditions along the horizontal equilibrium of the rotor ie $x=0$, $y=0$. How will these ten initial conditions change in time with respect to each other? What can we say about their distance after a large amount of kickso?
  • *Bonus:** Try to code and plot the behaviour of some other map. (For inspiration you can look at the sample solution of the last series.)

(6 points)5. Series 28. Year - S. mapping

 

  • Show that for arbitrary values of parameters $K$ and $T$ you can express the Standard map from the series express as

$$x_{n} = x_{n-1} y_{n-1},$$

$$\\ y_n = y_{n-1} K \sin(x),$$

where $x$, y$ are somehow scaled d$φ⁄dt,φ$. Show that the physical parameter $K$, x, y$$.

  • Look at the model of the kicked rotor from the series and take this time the passed impuls$I(φ)=I_{0}$, after the period $T$ then $I(φ)=-I_{0}$, after another one $I_{0}$ and this way keep on kicking the rotor on and on.
  • Make a map $φ_{n},dφ⁄dt_{n}$ on the basis of values $φ_{n-1},dφ⁄dt_{n-1}$ before the doublekick ± $I$ Why not?
  • Solve $φ_{n},dφ⁄dt_{n}$ on the basis of some initial conditions $φ_{0},dφ⁄dt_{0}$ for an arbitrary $n$.
  • *Bonus:** Try using the ingeredients from this series to design kicking which $will$ result in chaotic dynamics. Take care though because $φ$ is periodic with a period 2π and shouldn't d$φ⁄dt$ unscrew forever through kicking.

(6 points)4. Series 28. Year - S. Ljapunovian

 

  • Assume a pen of length 10 cm with a center of mass precisely in the middle and $g=9.81\;\mathrm{m}\cdot \mathrm{s}^{-2}.Now$ imagine that you put the pen on the table with a null deviation $δx$ with an accuracy of $ndecimal$ places and with a null velocity. How long after making the pen stand can you be sure with just $n-decimal$ places of the nullness of the displacement?
  • Consider a model of weather with the biggest Ljapun's exponent $λ=1.16\cdot 10^{-5}s^{-1}$. The weather forecast stops being useful if its error becomes bigger than 20 %. If you had determined the state of the weather with an accuracy of 1 %, how long do you estimate that your forecast would be good for? Give the answer in days and hours.
  • Take Lorenz's model of convection from the last part, copy the function $f(xi,t)$ amd simulate and draw the values of the parameters $X(t)$ for two different trajectories using the commands X01=1;

Y01=2;

Z01=5;

X02=…;

Y02=…;

Z02=…;

nastaveni = odeset('InitialStep', 0.01,'MaxStep',0.1);

pocPodminka1=[X01,Y01,Z01];

reseni1=ode45(@f,[0,45],pocPodminka1,nastaveni);

pocPodminka2=[X02,Y02,Z02];

reseni2=ode45(@f,[0,45],pocPodminka2,nastaveni);

plot(reseni1.x,reseni1.y(:,1),reseni2.x,reseni2.y(:,1));

pause()

</pre> Instead of three dots $X02,Y02,Z02you$ have to give the initial conditions for the second trajectory. Run the code for at least five different orders of magnitude that are all still small and note the time, in which the second trajectory shall differ qualitatively from the first(ie will go in the opposite direaction). Don't decrease the deviation under cca 10^{$-8}$, because then the imprecision's of numerical integration start to show. Chart the dependency of the ungluing time on the order of magnitude of the deviation.

Bonus: Attempt to use the gained dependency of the ungluing time on the size of the deviation estimate Ljapun's exponent. You will need more than five runs and you can assume that at the moment of ungluing it will always overcome some constant $Δ_{c}$.

(6 points)3. Series 28. Year - S. numerical

 

  • Look at the equations of the Lorenz model and write a script to simulate them in Octave (maybe even refresh your knowledge of the second part of series). Together with the sketching command your script should have the following form: …

function xidot = f(t,xi)

xdot=…;

ydot=…;

zdot= …;

xidot = [xdot;ydot;zdot];

endfunction

config = odeset('InitialStep', 0.01,'MaxStep',0.1);

initialCondition=[0.2,0.3,0.4];

solution=ode45(@f,[0,300],initialCondition,config);

plot3(solution.y(:,1),solution.y(:,2),solution.y(:,3)); </pre> Just instead of three dots fill in the rest of the code (just as in the second part of the series) and use $σ=9,5$, $b=8⁄3.Then$ figure out with a precision of at least units for what positive $r$ the system goes from asymptomatic stopping to chaotic oscillation(it is independent of the initial conditions).

  • Here is the full text of the Octave script for simulating and visualising the movement of a particle in a gravitational field of a massive object in the plane $xy$, where all the constants and parameters are equal to one: clear all

pkg load odepkg

function xidot = f(t,xi)

alfa=0.1;

vx=xi(3);

vy=xi(4);

r=sqrt(xi(1)^2+xi(2)^2);

ax=-xi(1)/r^3;

ay=-xi(2)/r^3;

xidot = [vx;vy;ax;ay];

endfunction

config = odeset('InitialStep', 0.01,'MaxStep',0.1);

x0=0;

y0=1;

vx0=…;

vy0=0;

initialCondition=[x0,y0,vx0,vy0];

solution=ode45(@f,[0,100],initialCondition,config)

plot(solution.y(:,1),solution.y(:,2));

pause()</pre>

  • Choose initial conditions $x0=0,y0=1,vy0=0$ and and a nonzero initial velocity in the direction $x$ such that the particle will be bound (ie. it won't escape the center.)
  • Add to the gravitational force the following force $-α\textbf{r}⁄r^{4}$, where $αis$ a small positive number. Choose gradually increasing $α$ beginning with $α=10^{-3}$ and and show that they cause quasiperiodic movement.

(2 points)2. Series 28. Year - 2. hedonistic cell

Estimate on the basis of macroscopically measureable quantities the number of cells in the human body and the number of particles in one mole , how many molecules of oxygen„are used“ daily by a human body cell. Find the relevant information needed for the calculation and don't forget to cite your sources properly.

Karel was thinking will taking the underground.

(5 points)2. Series 28. Year - P. problem of the travelling salesman

When digital mobile phones started to be more common there was often an issue with accepting calls in a car. Nowadays this issue is mostly connected with trains. What factors influence the transmission of data in the GSM network and how can they influence the availability of the signal of the provider? How can one combat this problem?

Ales P. was travelling first class by train and he thought something up.

(2 points)4. Series 27. Year - 1. Another unsharpened one

A freshly sharpened pencil 6B has a tip in the shape of a cone and the radius of the cone's base is $r=1\;\mathrm{mm}$ a and its height is $h=5\;\mathrm{mm}$. How long will the line that we are able to make with it be if the distance of two graphite layers is $d=3,4Å$ and the track of the pencil has on average $n=100$ such layers?

Mirek was calculating how long his pencils will last.

(5 points)4. Series 27. Year - P. the true gravitational acceleration

Faleš wanted to determine the gravitational acceleration from an experiment in Prague(V Holešovickách 2 in the first floor/ground floor). In the experiment he was dropping a round ball from a height of a couple of meters above the Earth. Think about what kind of corrections he had to apply when analysing the data. Then think up your own experiment to determine g and discuss its accuracy.

Karel was thinking about the difference between gravitational acceleration and gravitational force

(5 points)3. Series 27. Year - P. solar power

Can a plane fly using a solar power?

Dominika with Honza and Michal wanted to fly away to warmer countries.

This website uses cookies for visitor traffic analysis. By using the website, you agree with storing the cookies on your computer.More information

Organizers and partners

Organizer

Organizer MSMT_logotyp_text_cz

General Partner

Main Partner

Partner

Media Partner


Created with <love/> by ©FYKOS – webmaster@fykos.cz