Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Max Destabilizer Rank
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
luke naylor latex documents
research
Max Destabilizer Rank
Commits
229662ee
Commit
229662ee
authored
1 year ago
by
Luke Naylor
Browse files
Options
Downloads
Patches
Plain Diff
Use walrus op in asserts to keep track of alternative exprs pt 3 (final)
parent
587a5d1a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main.tex
+33
-12
33 additions, 12 deletions
main.tex
with
33 additions
and
12 deletions
main.tex
+
33
−
12
View file @
229662ee
...
...
@@ -261,19 +261,28 @@ bgmlv1_d_lowerbound_linear_term = (
).expand()
# Verify the simplified forms of the terms that will be mentioned in text
assert bgmlv1
_
d
_
lowerbound
_
const
_
term == (
v.twist(beta
_
min).ch[2]/2
+ beta
_
min*q
)
var("chbv",domain="real") # symbol to represent ch
_
1
^
\beta
(v)
assert bgmlv1
_
d
_
lowerbound
_
exp
_
term == (
(
- R*v.twist(beta
_
min).ch[2]/2
- R*beta
_
min*q
+ C*q
- q
^
2
)/(R-2*r)
).expand()
# Keep hold of this alternative expression:
bgmlv1
_
d
_
lowerbound
_
exp
_
term
_
alt :=
(
- R*chbv/2
- R*beta
_
min*q
+ C*q
- q
^
2
)/(R-2*r)
)
.subs(chbv == v.twist(beta
_
min).ch[2])
.expand()
)
\end{sagesilent}
...
...
@@ -476,13 +485,18 @@ assert bgmlv3_d_upperbound_const_term == (
)
assert bgmlv3
_
d
_
upperbound
_
exp
_
term == (
bgmlv3
_
d
_
upperbound
_
const
_
term
_
alt2 :=
(
R*v.twist(beta
_
min).ch[2]
+ (C - q)
^
2/2
+ R*beta
_
min*q
- D*R
)/(r-R)
# Keep hold of this alternative expression:
bgmlv3
_
d
_
upperbound
_
const
_
term
_
alt2 :=
(
R*chbv
+ (C - q)
^
2/2
+ R*beta
_
min*q
- D*R
)/(r-R)
)
.subs(chbv == v.twist(beta
_
min).ch[2]) # subs real val of ch
_
1
^
\beta
(v)
.expand()
)
\end{sagesilent}
...
...
@@ -514,6 +528,13 @@ $(r,c,d)$ that satisfy all inequalities to give a pseudowall.
Suppose we take
$
\beta
=
\beta
_{
-
}$
in the previous subsections, to find all
circular walls to the left of the vertical wall (TODO as discussed in ref).
\begin{equation*}
\sage
{
bgmlv3
_
d
_
upperbound
_
const
_
term
}
\end{equation*}
\begin{equation*}
\sage
{
bgmlv3
_
d
_
upperbound
_
const
_
term
_
alt1.subs(chbv == 0)
}
\end{equation*}
\section
{
Conclusion
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment