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
aafd1d93
Commit
aafd1d93
authored
1 year ago
by
Luke Naylor
Browse files
Options
Downloads
Patches
Plain Diff
Start working on simplified expressions for terms of d bounds
parent
a8c75b8b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main.tex
+40
-2
40 additions, 2 deletions
main.tex
with
40 additions
and
2 deletions
main.tex
+
40
−
2
View file @
aafd1d93
...
...
@@ -229,6 +229,31 @@ This can be rearranged to express a bound on $d$ as follows:
\sage
{
bgmlv1
_
d
_
ineq
}
\end{dmath}
\begin{sagesilent}
# Seperate out the terms of the lower bound for d
bgmlv1
_
d
_
lowerbound
_
exp
_
term = (bgmlv1
_
d
_
lowerbound*(R-2*r)).expand().subs(r==2*R)/(R-2*r)
bgmlv1
_
d
_
lowerbound
_
const
_
term = bgmlv1
_
d
_
lowerbound.subs(1/(R-2*r) == 0).subs(r==0)
bgmlv1
_
d
_
lowerbound
_
linear
_
term = bgmlv1
_
d
_
lowerbound.subs(1/(R-2*r) == 0).subs(r==1)*r
# 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, "fail"
assert bgmlv1
_
d
_
lowerbound
_
linear
_
term == (v.twist(beta
_
min).ch[2]/2 + beta
_
min
^
2/2 + beta
_
min*q)*r, "fail"
foo = (
- 2*R*v.twist(beta
_
min).ch[2]
- 3*R
^
2*beta
_
min
^
2
- 4*R*beta
_
min*q
+ C*q
- q
^
2
).expand()/(R-2*r)
\end{sagesilent}
\begin{equation}
\sage
{
bgmlv1
_
d
_
lowerbound
_
exp
_
term
}
\end{equation}
\begin{equation}
\sage
{
foo
}
\end{equation}
\noindent
In the case
$
\beta
=
\beta
_{
-
}$
(or
$
\beta
_{
+
}$
) this can be simplified.
...
...
@@ -276,10 +301,23 @@ This can be rearranged to express a bound on $d$ as follows:
\sage
{
bgmlv2
_
d
_
ineq
}
\end{equation}
\begin{sagesilent}
# Seperate out the terms of the lower bound for d
bgmlv2
_
d
_
lowerbound
_
exp
_
term = (bgmlv2
_
d
_
lowerbound*r).expand().subs(r==0)/r
bgmlv2
_
d
_
lowerbound
_
const
_
term = bgmlv2
_
d
_
lowerbound.subs(1/r == 0).subs(r==0)
bgmlv2
_
d
_
lowerbound
_
linear
_
term = bgmlv2
_
d
_
lowerbound.subs(1/r == 0).subs(r==1)*r
\end{sagesilent}
\noindent
In the case
$
\beta
=
\beta
_{
-
}$
(or
$
\beta
_{
+
}$
) this can be simplified.
\begin{equation}
\sage
{
bgmlv2
_
d
_
lowerbound
_
exp
_
term
}
\end{equation}
\begin{equation}
\sage
{
bgmlv2
_
d
_
lowerbound
_
const
_
term
}
\end{equation}
\begin{equation}
\sage
{
bgmlv2
_
d
_
lowerbound
_
linear
_
term
}
\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