-
Notifications
You must be signed in to change notification settings - Fork 3
/
learn.html
110 lines (102 loc) · 6 KB
/
learn.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script
src="https://kit.fontawesome.com/2d323a629b.js"
crossorigin="anonymous">
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/tailwind_style.css">
<link rel="stylesheet" href="css/style.css">
<title>Learn | QC@UCI</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="header">
<a href="index.html">
<img src="image/navy_anteater_bloch.png" width="150" alt="Home">
</a>
<nav>
<ul class="header__nav">
<li><a href="index.html">Home</a></li>
<li><a href="join.html">Join</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="event.html">Events</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact_us.html">Contact</a></li>
</ul>
</nav>
</header>
<p style="margin-bottom:180px;"></p>
<div class="learn__title">What is Quantum Computing?</div>
<p style="margin-bottom:50px;"></p>
<div class="about-main-container">
<div class="about-left-section">
<p class="learn_txt">
<b>Quantum computing</b> is a new and rapidly evolving computational paradigm rooted in the principles of quantum mechanics, poised to compete with traditional computing models. It works in a very different way using quantum bits or <b>qubits</b>, rather than classical bits. Special properties of subatomic particles like electrons or photons grant quantum computers an inherent advantage in solving some complex problems.<br><br> Unlike classical computers, which process information sequentially, quantum computers can evaluate multiple solutions in parallel, which <b>exponentially</b> increases their computing power. This transformative technology holds the potential to reshape our approach to a multitude of challenges. From optimizing supply chains and revolutionizing cryptography to decoding the mysteries of quantum physics and advancing artificial intelligence, quantum computing transcends the boundaries of conventional computation.
</p>
</div>
<div class="about-right-section">
<img src="image/qc.png" alt="A picture of quantum mechanics.">
</div>
</div>
<div class="learn__title">Applications</div>
<div class="applications-container">
<div class="app-item">
<div class="app-text">
<h2>Cybersecurity</h2>
<p>Quantum computing presents a dual challenge and opportunity in cybersecurity. It threatens widely-used encryption algorithms like RSA with its potential to efficiently solve problems like integer factorization. This necessitates the development of quantum-resistant encryption methods like SHA-256. Simultaneously, quantum key distribution (QKD) harnesses the principles of quantum mechanics to establish unhackable encryption keys, ensuring data security in a post-quantum era.</p>
</div>
<div class="app-img">
<img src="image/app-image1.png" alt="Cybersecurity">
</div>
</div>
<div class="app-item">
<div class="app-text">
<h2>Machine Learning</h2>
<p>Quantum Machine Learning (QML) holds the potential to revolutionize fields like natural language processing, image recognition, and recommendation systems, where data processing and understanding are paramount. Scientists are exploring various quantum neural networks and building variational quantum algorithms for improved generality and better accuracy in reduced training time. Thus, QML offers the prospect of more potent and efficient AI models, redefining the landscape of artificial intelligence.</p>
</div>
<div class="app-img">
<img src="image/app-image2.png" alt="Machine Learning">
</div>
</div>
<div class="app-item">
<div class="app-text">
<h2>Optimization</h2>
<p>Quantum algorithms, such as the quantum approximate optimization algorithm (QAOA), promise significant acceleration of optimization tasks, enhancing training processes and model tuning. This technology also augments clustering and classification algorithms, enabling the identification of intricate patterns within vast datasets.</p>
</div>
<div class="app-img">
<img src="image/app-image3.png" alt="Optimization">
</div>
</div>
<div class="app-item">
<div class="app-text">
<h2>Chemistry</h2>
<p>Quantum computing revolutionizes chemistry by rapidly modeling molecules and chemical reactions at the quantum level. This breakthrough accelerates drug discovery, materials engineering, and fundamental chemical research, offering solutions to global challenges in healthcare and materials science.
</p>
</div>
<div class="app-img">
<img src="image/app-image4.png" alt="Chemistry">
</div>
</div>
</div>
<div class="app-item">
<div class="app-text">
<h2>Physics</h2>
<p>Quantum computing empowers physicists by simulating quantum systems, aiding research in quantum field theory, optics, and gravitational wave detection. It accelerates the study of particles, fundamental forces, and the mysteries of the universe, promising profound insights into the fabric of reality.</p>
</div>
<div class="app-img">
<img src="image/app-image5.png" alt="Physics">
</div>
</div>
<footer>
<div class="footer__copyRight">
<p><a href="./contact_us.html">Copyright © 2024 Quantum Computing @ UCI. All Rights Reserved. </a></p>
</div>
</footer>
</body>
</html>