-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuture_applications.html
83 lines (70 loc) · 3.79 KB
/
future_applications.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>
<head>
<link rel="stylesheet" href="styles.css">
<title>Future</title>
</head>
<body>
<div class="allItems">
<header>
<h1 class="title">Future of Quantum Computer and Applications</h1>
</header>
<main>
<!-- sticks out when less than 1000 pixels in width, same for all pages -->
<nav>
<ul class="navbar">
<li><a href="index.html">Overview of Quantum Computing</a></li>
<li><a href="history.html">History of Quantum Computers</a></li>
<li><a href="advantages_disadvantages.html">Advantages and Disadvantages</a></li>
<li><a href="future_applications.html">Future of Quantum Computing and Applications</a></li>
<li><a href="others.html">Quantum Computing Quiz</a></li>
</ul>
</nav>
<article>
<!-- intro on future of quantum computing -->
<h3 class="subtitle">Future of Quantum Computing</h3>
<p>
The global quantum computing industry is projected to grow exponentially from $412 million in 2020
to $8.6 billion in 2027. Quantum computers are expected to be available in the market by 2030, but
more time will be required for hardware and software refinements before businesses can use them for
their applications. Advances in quantum computing are increasing the potential of quantum AI, and
will transform numerous industries, ranging from healthcare and energy to finance and security.
</p>
<br>
<!-- list of future applications of quantum computers -->
<h3 class="subtitle">Applications of Quantum Computers</h3>
<ol>
<li><b>Artificial Intelligence:</b> Quantum computing can help improve accuracy with feedback in AI
and learn from mistakes.</li>
<li><b>National Security:</b> Can be used for spying and military operations
simulations.</li>
<li><b>Design:</b> Can replicate component interactions in complex hardware
systems.</li>
<li><b>Optimization:</b> Quantum computing optimize traffic flow and portfolio
optimization.</li>
<li><b>Cryptography:</b> It can crack current encryption methods but also create new and stronger
ones to protect sensitive information.</li>
<li><b>Materials Science:</b> Can help develop better batteries and cleaner
fertilization processes.</li>
<li><b>Finance:</b> Can speed up decision-making in financial transactions.
</li>
<li><b>Healthcare:</b> Accelerate drug discovery.</li>
<li><b>Quantum Simulation:</b> Quantum computers can simulate quantum physics and chemistry to
better understand how matter behaves.</li>
</ol>
</article>
</main>
<footer>
<p><b>- First Name - Last Name - 2023</b></p><br>
<p><u>Contact Information</u></p><br>
<p>Email: [email protected]</p>
<p>Phone: 987-654-3210</p>
<div style="text-align: right; margin-right: 5px;">
<img src="logo.png" width="45px">
</div>
</footer>
</div>
<button onclick="toTop()" id="backToTop" title="Go to the top of the page">Back to Top</button>
<script src="helper.js"></script>
</body>
</html>