Skip to main content

list manipulation - How to find the circulating fraction by pattern matching?


Important note:


It's not hard to solve this problem, hence please explain how to use patterm matching instead of how to find the recurring period of a fraction.




We can easily extract real digits from a number, for example, $99/700$, using RealDigits[99/700, 10, 24][[1]] or so. The result is {1, 4, 1, 4, 2, 8, 5, 7, 1, 4, 2, 8, 5, 7, 1, 4, 2, 8, 5, 7, 1, 4, 2, 8}.


Now I would like to find out the recurring period which is {1,4,2,8,5,7}. This result is quite easy to get via this code: RealDigits[99/700, 10][[1, -1]].


Well, I tried to find out this period myself and practice my programming ability with pattern matching when I found out I cannot easily do this job via this code:


RealDigits[99/700, 10, 
24][[1]] /. {Shortest[pre___, 2],
Longest[Repeated[Shortest[r__, 3], {2, Infinity}], 4],

Shortest[inc___, 1]} /;
MatchQ[{r}, {inc, __}] -> {{pre}, {r}, {inc}}

I think this code could generate a proper result as:




  1. Pattern matching will find out how to make the recurring range largest.




  2. Then it will try to make the recurring body shortest.





  3. After that it will ensure it leaves the least digits before the recurrence started.




  4. At the next priority, it shall keep the left overs shortest.




  5. Finally it will make sure that the left over shall be the starting part of the recurrence.





But in fact it gives out something like:


{{1, 4, 1, 4, 2, 8, 5}, {7, 1, 4, 2, 8, 5}, {7, 1, 4, 2, 8}}

Not that pleasant, still have place for improvements.


How to solve this problem? And furthermore, how can I throw away that {2,Infinity} in the Repeated and let the Shortest and Longest do the job? I think, theoretically, it's okay as Longest always find out the largest range while Shortest find out the smallest cycle. But I cannot think of a way to do this.



Answer



This problem can be solved very efficiently using string patterns:


str = ToString[FromDigits@RealDigits[99/700, 10, 24][[1]]];


AbsoluteTiming[StringReplace[str,
StartOfString ~~
pre : Shortest[DigitCharacter ...] ~~
Repeated[rep : Shortest[DigitCharacter ..], {2, Infinity}] ~~
inc : DigitCharacter ... ~~
EndOfString /;
StringMatchQ[rep, inc ~~ __] :> pre <> "(" <> rep <> ")" <> inc]]


{0.00488615, "14(142857)1428"}


Even million of digits takes lesser than 2 seconds to process:


str = ToString[FromDigits@RealDigits[99/700, 10, 1000000][[1]]];

AbsoluteTiming[StringReplace[str,
StartOfString ~~
pre : Shortest[DigitCharacter ...] ~~
Repeated[rep : Shortest[DigitCharacter ..], {2, Infinity}] ~~
inc : DigitCharacter ... ~~
EndOfString /;

StringMatchQ[rep, inc ~~ __] :> pre <> "(" <> rep <> ")" <> inc]]


{1.27581, "14(142857)14"}

What is important, addition of arbitrary integer part doesn't alter the period even if this integer part contains recurring sequence of numbers:


str = ToString[FromDigits@RealDigits[141414141414141414 + 99/700, 10, 1000][[1]]];

AbsoluteTiming[StringReplace[str,
StartOfString ~~

pre : Shortest[DigitCharacter ...] ~~
Repeated[rep : Shortest[DigitCharacter ..], {2, Infinity}] ~~
inc : DigitCharacter ... ~~
EndOfString /;
StringMatchQ[rep, inc ~~ __] :> pre <> "(" <> rep <> ")" <> inc]]


{0.049049, "14141414141414141414(142857)14"}

The crucial part here is pre : Shortest[DigitCharacter ...] which is converted internally to RegularExpression["(\\d*?)"] containing lazy quantifier *?. The algorithm behind this quantifier along with the Condition are what always gives us the optimal (not shifted) recurring period. By introducing pseudo-condition (Print[{pre, rep, inc}]; True) we can observe joint work of them both:



str = ToString[FromDigits@RealDigits[14 + 99/700, 10, 24][[1]]];

StringReplace[str,
StartOfString ~~
pre : Shortest[DigitCharacter ...] ~~
Repeated[rep : Shortest[DigitCharacter ..], {2, Infinity}] ~~
inc : DigitCharacter ... ~~
EndOfString /;
(Print[{pre, rep, inc}]; True) && StringMatchQ[rep, inc ~~ __] :>
pre <> "(" <> rep <> ")" <> inc];



{, 14, 285714285714285714}


{, 14, 14285714285714285714}


{1, 41, 4285714285714285714}


{14, 14, 285714285714285714}


{1414, 142857, 14}



From the above we can clearly see how the lazy quantifier *? works and what is the role of the Condition in rejecting inappropriate matches.


Note that the above condition StringMatchQ[rep, inc ~~ __] isn't sufficiently strict to provide the optimal period without the optimal searching algorithm. For example if we reverse the string and change the condition correspondingly, we get shifted period because now the leading pattern is inc : DigitCharacter ... and hence the search is performed in wrong order:



str = ToString[FromDigits@RealDigits[99/700, 10, 24][[1]]];

StringReplace[StringReverse@str,
StartOfString ~~
inc : DigitCharacter ... ~~
Repeated[rep : Shortest[DigitCharacter ..], {2, Infinity}] ~~
pre : Shortest[DigitCharacter ...] ~~
EndOfString /;
(Print[StringReverse /@ {pre, rep, inc}]; True) && StringMatchQ[rep, __ ~~ inc] :>
inc <> ")" <> rep <> "(" <> pre] // StringReverse;



{, 14, 28571428571428571428}


{14, 142857, 1428571428}


{141, 428571, 428571428}


{1414, 285714, 28571428}


{14142, 857142, 8571428}


{141428, 571428, 571428}


{1414285, 714285, 71428}


"1414285(714285)71428"


With a more rigorous condition StringMatchQ[rep, __ ~~ inc] && UnsameQ @@ StringTake[{pre, rep}, UpTo[1]] we get the optimal result despite the suboptimal searching algorithm:


StringReplace[StringReverse@str,
StartOfString ~~
inc : DigitCharacter ... ~~
Repeated[rep : Shortest[DigitCharacter ..], {2, Infinity}] ~~
pre : Shortest[DigitCharacter ...] ~~
EndOfString /;
StringMatchQ[rep, __ ~~ inc] && UnsameQ @@ StringTake[{pre, rep}, UpTo[1]] :>
inc <> ")" <> rep <> "(" <> pre] // StringReverse



"14(142857)1428"

It is worth to note that Mr.Wizard's elegant solution via the native Mathematica's patterns also can't process correctly the list in the reverse direction. In the following I essentially have changed only the condition in order to allow it to match the reversed list:


Reverse[RealDigits[99/700, 10, 24][[1]]] /. 
{inc___, Repeated[rep__, {2, Infinity}], pre___} /;
MatchQ[{rep}, {__, inc}] :> Reverse /@ {{pre}, {rep}, {inc}}



{{1, 4, 1, 4, 2, 8, 5, 7, 1, 4, 2, 8}, {5, 7, 1, 4, 2, 8}, {}}

But it can be cured easily by wrapping pre___ with Shortest:


Reverse[RealDigits[99/700, 10, 24][[1]]] /. 
{inc___, Repeated[rep__, {2, Infinity}], Shortest@pre___} /;
MatchQ[{rep}, {__, inc}] :> Reverse /@ {{pre}, {rep}, {inc}}


{{1, 4}, {1, 4, 2, 8, 5, 7}, {1, 4, 2, 8}}


This improved solution also works well with the original list:


RealDigits[99/700, 10, 24][[1]] /. 
{Shortest@pre___, Repeated[rep__, {2, Infinity}], inc___} /;
MatchQ[{rep}, {inc, __}] :> {{pre}, {rep}, {inc}}


{{1, 4}, {1, 4, 2, 8, 5, 7}, {1, 4, 2, 8}}

Note that there is no way to cure the string pattern in order to allow it to process the string in the reverse direction the same way as in the forward direction. This illustrates the fundamental difference between string patterns (based on regular expressions) and native Mathematica's patterns. Although one should understand that (at least in the general case) the latter also work differently depending on the direction as can be seen from the following excerpt from the Documentation and proven using ReplaceList (as described here):




If several Shortest objects occur in the same expression, those that appear first are given higher priority to match shortest sequences.



Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

equation solving - Invert and fit implicitly defined curve

I need to fit an implicitly defined curve. I thought I could get some data out of Solve , and then using FindFit . Therefore, I would like to find the relation the parametric curve defined by $F(x,y)=0$: Solve[-(1/2) + 1/2 (0.41202 BesselK[0, 0.1 Sqrt[x^2 + y^2]] + (0.101483 x BesselK[1, 0.1 Sqrt[x^2 + y^2]])/Sqrt[x^2 + y^2]) == 0, y] But I can't get an output: Solve was unable to solve the system with inexact coefficients or the system obtained by direct rationalization of inexact numbers present in the system. Since many of the methods used by Solve require exact input, providing Solve with an exact version of the system may help. >> Edit: In particular, I would like to fit the data coming from the curve with the expression of another curve, and not with a function $f(x)$. In particular, since this clearly looks like a cardioid , I would like it to fit to something like it. What other strategies could I try?

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...