-
Notifications
You must be signed in to change notification settings - Fork 0
/
mathematical-physics.html
83 lines (82 loc) · 3.29 KB
/
mathematical-physics.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style_mp.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shotcut icon" type="image/jpg" href="images/FavAndLogo.png">
<title>MP Lab</title>
</head>
<body oncontextmenu="return false">
<span>
<div class="logo"><img class="logo" src="images/andc_logo.jpg"></div>
<h1>VLab@ANDC</h1>
<ul class="navigation">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#labs_section">Labs</a></li>
<li><a href="index.html#team">Team</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="https://www.andcollege.du.ac.in/" target="_blank" rel="noopener noreferrer">College Website</a></li>
</ul>
</span><br>
<div class="heading-exp">
<h1><br> Mathematical Physics</h1>
</div>
<div class="exps">
<h1>List of experiments:-</h1>
<div class="container">
<div class="box">
<a href="monte-main.html">
<div class="title"><h2>Random Number Operations:-</h2></div>
<div class="desc"><p class="desc">Generating pseudo random numbers To find value of pi using Monte Carlo simulations.</p></div>
</a>
</div>
<div class="box">
<a href= "bisection-main.html">
<div class="title"><h2 class="heading">Solution of Algebraic and
Transcendental equations by
Bisection Methods:-</h2></div>
<div class="desc">
<p class="desc">To determine the position of maxima including secondary
maxima, Intensity in single slit Fraunhofer diffraction using
Bisection Method.
</p>
<p class="desc">Use Bisection Method to find roots of f(x)=x-tan(x), then using the
root calculate normalized Intensity using formula –</p><br>
<img class="image-problem" src="images/intensity equation.jpeg">
</div>
</a>
</div>
<div class="box">
<div class="title"><h2 class="heading">Solution of Algebraic and
Transcendental equations by
Newton-Raphson Method:-</h2></div>
<div class="desc">
<p class="desc">Use this method to calculate roots of a function in "ISOLATED INTERVALS".
</p>
</div>
</div>
</div>
</div>
<script>
document.onkeydown = function(e) {
if(event.keyCode == 123) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) {
return false;
}
if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) {
return false;
}
}
</script>
</body>
</html>