Video: Quantum Computation simulations using Mathematica and Free Quantum Computing Add On

This calculations are available at:   http://homepage.cem.itesm.mx/lgomez/quantum/v7phase.pdf

Shor's Factoring Algorithm is very important because it showed that a Quantum Computer will be more efficient than a normal computer when solving some important, practical problems (Factorization is important in the secure transmision of electronic data, like credit card numbers). This video shows briefly how Shor's algorithm can be simulated in Mathematica using the free Quantum add-on. Quantum is available at:  http://homepage.cem.itesm.mx/lgomez/quantum/

More  videos on related topics from the same author

Java – Set the Size of a FrameView programmatically

This code snip creates a jFrame object and sets it to maximum dimensions before setting the startup frame equal to it.  I tried the direct one liner method but this did not work.  It thwarted me time after time.

[java]<br />
&lt;/p&gt;
</p>

<p>
&lt;p&gt;<br />
super(app);&lt;br /&gt;<br />
JFrame frame = new JFrame();&lt;br /&gt;<br />
frame.pack();&lt;br /&gt;<br />
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);&lt;br /&gt;<br />
frame.setResizable(false);&lt;br /&gt;<br />
this.setFrame(frame);&lt;br /&gt;<br />
initComponents();<br />
&lt;/p&gt;
</p>

<p>
&lt;p&gt;<br />
[/java]

WordPress PlugIn: Syntax HighLighter hilites your code snips

The original creators page is here. <pre class="brush: php; highlight: [5, 15]; html-script: true"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>SyntaxHighlighter Demo Page – <?= htmlspecialchars($title) ?></title> </head> <body> <? /*********************************** ** Multiline block comments **********************************/ $stringWithUrl = Read more…