-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update reproducing.m, PTR-BCR-4 #54
base: master
Are you sure you want to change the base?
Conversation
Update the PTR-BCR-4 part, Eq. 68
More details on discord! |
Thank you so much @tiresias7! Preferably all communications about this Pull Request can remain here in this thread, rather than in private messages in Discord, because it will be much easier to find things that way. I would also encourage you to do the following:
If you need help compiling the book's source code, you can ask Eric Huang (ehuan2) in this thread. |
@ehuan2 Can you write some advice here about how you compiled the book's source code locally into a PDF with only +10 changes? |
Yeah so the issue that was creating a lot of changes that we don't need necessarily was the fact that my compiler created log files that looked very different because of different versions, different file systems, etc. So I just kind of ignored those changes when adding to the commit. Another thing is what you're using, I have TeXWorks installed on Windows, and that allows you to compile with lots of different stuff, which some didn't work until I compiled with just pdfLatex. Another option is just to compile online using something like overleaf, and copying it back locally. |
Hi @ndattani ! Today I finished one of my final exams and decided to complete the steps. However, I'm a little bit stuck. In PTR-BCR-4, it requires k=2^(m+1). Maybe k=6 won't work for this? Also, I'm wondering if I'm doing the right thing with Github. I first merged the current version of the whole branch to my fork, and then pushed the commits in this pull request to the patch-1 branch (I guess?). Am I doing the right thing? |
Hi @tiresias7, can you try `k=8`? As for your second question, it was correct to merge the current version from HPQC-LABS/Master to tiresias7/Master (though you seemed to merge it into tiersias7:patch-1 which is also okay). The pull request should now automatically have the latest commits from HPQC-LABS/Master and from your initial commits to patch-1. You can continue to make commits to patch-1. Let me know if you have any questions!
|
Added Eq.71 and 73 with k=8, checked correctness
Added an equation, also fixed some typo
Added equation 73
Hi @ndattani ! I think I've done all the things. k=8 is really big, so I used the for-clause to avoid listing out all the products of b1,2,...,11. I have changed the tex file. Hope it's good. I also fixed some typos on the same page - I couldn't believe it when I found that the original formula on the book has actually a typo. How did I make it last time? Since I have done some other changes, I decided to post the whole page of pdf here. Thank you so much for your help! |
everything_else/reproducing.m
Outdated
@@ -157,6 +157,81 @@ | |||
%% Pg. 21, PTR-BCR-2 | |||
%% Pg. 22, PTR-BCR-3 (example appears to be the same as PTR-BCR-1, and may have to be redone) | |||
%% Pg. 23, PTR-BCR-4 | |||
|
|||
% Eq. 72 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Equation numbers can change, when new questions get added or old ones get removed. Instead of calling something "Eq. 72" it's better to give a description, such as "Equation in Summary section of PTR-BCR-4". Earlier we were using equation numbers in this file, but now things are changing and we're moving away from using equation numbers in that way (and we're moving more towards using descriptions).
@@ -157,6 +157,81 @@ | |||
%% Pg. 21, PTR-BCR-2 | |||
%% Pg. 22, PTR-BCR-3 (example appears to be the same as PTR-BCR-1, and may have to be redone) | |||
%% Pg. 23, PTR-BCR-4 | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Eq. 71 should come before Eq. 72.
LHS = min(reshape(b1.*b2.*b3.*b4, 4, [])); | ||
RHS = min(reshape((b1 + b2 + b3 + b4 - ba1 - 2*ba2).^2, 4, [])); | ||
isequal(LHS,RHS); % Gives 1, confirmed by Nike on 6 April. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I appreciate that it would take a long time to type out b1*b2 + b1*b3 + b1*b4 + ...
for all terms, I think that it would be more "readable". For all other quadratizations verified in this file so far, it's easy to compare the equation in the book with the code and immediately see that they're the same. In this case, it's a lot more complicated. Perhaps you can use MATLAB's symbolic computing toolbox to help.
I think I'd prefer MATLAB code that looks as close as possible to the equations in the book, then we can also keep your code containing the for
loops (so we have two different verifications for each equation: one "long" one that's easy to read, and one "compact" one which requires the reader to interpret a bunch of for
and end
statements).
This is very good work all around @tiresias7 !
|
@tiresias7 |
@ndattani I'm so sorry that I've left this task undone. Is it still possible for me to finish this now? |
@tiresias7 yes for sure! |
It has been a long way before I pick this up so it's a little hard for me to catch up. I've changed the comments for equations to be clearer and more direct. I also changed one of the formulas to become a more the readable and easy-to-check form (however very long) and check that LHS = RHS. If I'm going to do the same thing to the other formula, it would be 4 times longer than this current line, which is already 300 characters long. Should I do it or it is too long an example? |
Besides this, do I also have to change the pdf file?
In my understanding, I'm going to change indices to 1. Is that right? |
Update the PTR-BCR-4 part, Eq. 68