fun prove_limit_at_top ectxt f filter = let val ctxt = get_ctxt ectxt val basis = Asymptotic_Basis.default_basis val prover = casefilterof Const (\<^const_name>\<open>Topological_Spaces.nhds\<close>, _) $ _ => SOME Exp.prove_nhds
| \<^term>\<open>at (0 :: real)\<close> => SOME Exp.prove_at_0
| \<^term>\<open>at_left (0 :: real)\<close> => SOME Exp.prove_at_left_0
| \<^term>\<open>at_right (0 :: real)\<close> => SOME Exp.prove_at_right_0
| \<^term>\<open>at_infinity :: real filter\<close> => SOME Exp.prove_at_infinity
| \<^term>\<open>at_top :: real filter\<close> => SOME Exp.prove_at_top
| \<^term>\<open>at_bot :: real filter\<close> => SOME Exp.prove_at_bot
| _ => NONE val lim_thm = Option.map (fn prover => prover ectxt (Exp.expand_term ectxt f basis)) prover in case lim_thm of
NONE => no_tac
| SOME lim_thm =>
HEADGOAL (
resolve_tac ctxt [lim_thm, lim_thm RS @{thm filterlim_mono'}]
THEN_ALL_NEW (TRY o resolve_tac ctxt @{thms at_within_le_nhds at_within_le_at nhds_leI})) end
fun prove_eventually_at_top ectxt p = case Envir.eta_long [] p of
Abs (x, \<^typ>\<open>Real.real\<close>, Const (rel, _) $ f $ g) => (( let val (f, g) = apply2 (fn t => Abs (x, \<^typ>\<open>Real.real\<close>, t)) (f, g) val _ = if rel = \<^const_name>\<open>Orderings.less\<close>
orelse rel = \<^const_name>\<open>Orderings.less_eq\<close> then () elseraise TERM ("prove_eventually_at_top", [p]) val ctxt = get_ctxt ectxt val basis = Asymptotic_Basis.default_basis val ([thm1, thm2], basis) = Exp.expand_terms ectxt [f, g] basis val thm = Exp.prove_eventually_less ectxt (thm1, thm2, basis) in
HEADGOAL (resolve_tac ctxt [thm, thm RS @{thm eventually_lt_imp_eventually_le}]) end) handle TERM _ => no_tac | THM _ => no_tac)
| _ => raise TERM ("prove_eventually_at_top", [p])
fun prove_landau ectxt l f g = let val ctxt = get_ctxt ectxt val l' = dest_Const_name l val basis = Asymptotic_Basis.default_basis val ([thm1, thm2], basis) = Exp.expand_terms ectxt [f, g] basis val prover = case l' of
\<^const_name>\<open>smallo\<close> => Exp.prove_smallo
| \<^const_name>\<open>bigo\<close> => Exp.prove_bigo
| \<^const_name>\<open>bigtheta\<close> => Exp.prove_bigtheta
| \<^const_name>\<open>asymp_equiv\<close> => Exp.prove_asymp_equiv
| _ => raise TERM ("prove_landau", [f, g]) in
HEADGOAL (resolve_tac ctxt [prover ectxt (thm1, thm2, basis)]) end
fun preproc_exp_log_natintfun_conv ctxt = let fun reify_power_conv x _ ct = let val thm = Conv.rewr_conv @{thm reify_power} ct in if exists_subterm (fn t => t aconv x) (Thm.term_of ct |> dest_arg) then
thm else raise CTERM ("reify_power_conv", [ct]) end fun conv (x, ctxt) = let val thms1 =
Named_Theorems.get ctxt \<^named_theorems>\<open>real_asymp_nat_reify\<close> val thms2 =
Named_Theorems.get ctxt \<^named_theorems>\<open>real_asymp_int_reify\<close> val ctxt' = put_simpset HOL_basic_ss ctxt addsimps (thms1 @ thms2) in
Conv.repeat_changed_conv
(Simplifier.rewrite ctxt'
then_conv Conv.bottom_conv (Conv.try_conv o reify_power_conv (Thm.term_of x)) ctxt) end in
Thm.eta_long_conversion
then_conv Conv.abs_conv conv ctxt
then_conv Thm.eta_conversion end
fun preproc_tac ctxt = let fun natint_tac {context = ctxt, concl = goal, ...} = let val conv = preproc_exp_log_natintfun_conv ctxt val conv = case Thm.term_of goal of
\<^term>\<open>HOL.Trueprop\<close> $ t => (case t of Const (\<^const_name>\<open>Filter.filterlim\<close>, _) $ _ $ _ $ _ =>
Conv.fun_conv (Conv.fun_conv (Conv.arg_conv conv))
| Const (\<^const_name>\<open>Filter.eventually\<close>, _) $ _ $ _ =>
Conv.fun_conv (Conv.arg_conv conv)
| Const (\<^const_name>\<open>Set.member\<close>, _) $ _ $ (_ $ _ $ _) =>
Conv.combination_conv (Conv.arg_conv conv) (Conv.arg_conv conv)
| Const (\<^const_name>\<open>Landau_Symbols.asymp_equiv\<close>, _) $ _ $ _ $ _ =>
Conv.combination_conv (Conv.fun_conv (Conv.arg_conv conv)) conv
| _ => Conv.all_conv)
| _ => Conv.all_conv in
HEADGOAL (CONVERSION (Conv.try_conv (Conv.arg_conv conv))) end in
SELECT_GOAL (Local_Defs.unfold_tac ctxt @{thms real_asymp_preproc}) THEN' TRY o resolve_tac ctxt @{thms real_asymp_real_nat_transfer real_asymp_real_int_transfer} THEN' TRY o resolve_tac ctxt
@{thms filterlim_at_leftI filterlim_at_rightI filterlim_atI' landau_reduce_to_top} THEN' TRY o resolve_tac ctxt @{thms smallo_imp_smallomega bigo_imp_bigomega} THEN' TRY o Subgoal.FOCUS_PREMS natint_tac ctxt THEN' TRY o resolve_tac ctxt @{thms real_asymp_nat_intros real_asymp_int_intros} end
datatype ('a, 'b) sum = Inl of'a | Inr of 'b
fun prove_eventually ectxt p filter = casefilterof
\<^term>\<open>Filter.at_top :: real filter\<close> => (prove_eventually_at_top ectxt p handle TERM _ => no_tac | THM _ => no_tac)
| _ => HEADGOAL (CONVERSION (Conv.rewrs_conv eventually_substs) THEN' tac' (#verbose (#ctxt ectxt)) (Inr ectxt)) and prove_limit ectxt f filterfilter' = casefilter' of
\<^term>\<open>Filter.at_top :: real filter\<close> => (prove_limit_at_top ectxt f filter handle TERM _ => no_tac | THM _ => no_tac)
| _ => HEADGOAL (CONVERSION (Conv.rewrs_conv filterlim_substs) THEN' tac' (#verbose (#ctxt ectxt)) (Inr ectxt)) and tac' verbose ctxt_or_ectxt = let val ctxt = case ctxt_or_ectxt of Inl ctxt => ctxt | Inr ectxt => get_ctxt ectxt fun tac {context = ctxt, prems, concl = goal, ...} =
(if verbose then print_tac ctxt "real_asymp: Goal after preprocessing"else all_tac) THEN let val ectxt = case ctxt_or_ectxt of
Inl _ =>
Multiseries_Expansion.mk_eval_ctxt ctxt |> add_facts prems |> set_verbose verbose
| Inr ectxt => ectxt in case Thm.term_of goal of
\<^term>\<open>HOL.Trueprop\<close> $ t => ((case t of
\<^term>\<open>Filter.filterlim :: (real \<Rightarrow> real) \<Rightarrow> _\<close> $ f $ filter $ filter' =>
(prove_limit ectxt f filterfilter' handle TERM _ => no_tac | THM _ => no_tac)
| \<^term>\<open>Filter.eventually :: (real \<Rightarrow> bool) \<Rightarrow> _\<close> $ p $ filter =>
(prove_eventually ectxt p filterhandle TERM _ => no_tac | THM _ => no_tac)
| \<^term>\<open>Set.member :: (real => real) => _\<close> $ f $
(l $ \<^term>\<open>at_top :: real filter\<close> $ g) =>
(prove_landau ectxt l f g handle TERM _ => no_tac | THM _ => no_tac)
| (l as \<^term>\<open>Landau_Symbols.asymp_equiv :: (real\<Rightarrow>real)\<Rightarrow>_\<close>) $ f $ _ $ g =>
(prove_landau ectxt l f g handle TERM _ => no_tac | THM _ => no_tac)
| _ => no_tac) THEN distinct_subgoals_tac)
| _ => no_tac end fun tac' i = Subgoal.FOCUS_PREMS tac ctxt i handle TERM _ => no_tac | THM _ => no_tac val at_tac =
HEADGOAL (resolve_tac ctxt
@{thms filterlim_split_at eventually_at_left_at_right_imp_at landau_at_top_imp_at
asymp_equiv_at_top_imp_at}) THEN PARALLEL_ALLGOALS tac' in
(preproc_tac ctxt THEN' preproc_tac ctxt THEN' (SELECT_GOAL at_tac ORELSE' tac'))
THEN_ALL_NEW (TRY o SELECT_GOAL (SOLVE (HEADGOAL (Simplifier.asm_full_simp_tac ctxt)))) end and tac verbose ctxt = tac' verbose (Inl ctxt)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.