diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -105,3 +105,8 @@
 ## 0.10.1.0 -- 2023-02-05
 
 * Tenth version revised A. Fixed issues with maxPosition2F function. 
+
+## 0.10.2.0 -- 2023-02-05
+
+* Tenth version revised B. Normed the functions in the Phladiprelio.Rhythmicity.Simple and Phladiprelio.Rhythmicity.Factor modules.
+
diff --git a/Phladiprelio/Rhythmicity/Factor.hs b/Phladiprelio/Rhythmicity/Factor.hs
--- a/Phladiprelio/Rhythmicity/Factor.hs
+++ b/Phladiprelio/Rhythmicity/Factor.hs
@@ -72,7 +72,7 @@
 defFactorsStr = "54321pi543"
 
 evalRhythmicity23F :: Factors -> Double -> [Double] -> Double
-evalRhythmicity23F ff k xs = maxPosition2F ff k xs + maxPosition3 xs
+evalRhythmicity23F ff k xs = maxPosition2F ff k xs + 14.37 * maxPosition3 xs
 {-# INLINE evalRhythmicity23F #-}
 
 evalRhythmicity23KF
@@ -82,5 +82,5 @@
   -> Double
   -> [Double]
   -> Double
-evalRhythmicity23KF ff k k2 k3 xs = k2 * maxPosition2F ff k xs + k3 * maxPosition3 xs
+evalRhythmicity23KF ff k k2 k3 xs = k2 * maxPosition2F ff k xs + k3 * 14.37 * maxPosition3 xs
 {-# INLINE evalRhythmicity23KF #-}
diff --git a/Phladiprelio/Rhythmicity/Simple.hs b/Phladiprelio/Rhythmicity/Simple.hs
--- a/Phladiprelio/Rhythmicity/Simple.hs
+++ b/Phladiprelio/Rhythmicity/Simple.hs
@@ -57,11 +57,11 @@
               | otherwise = (t,u,w + (1::Int16))
 
 evalRhythmicity23 :: (RealFrac a, Floating a) => [a] -> a
-evalRhythmicity23 xs = maxPosition2 xs + maxPosition3 xs
+evalRhythmicity23 xs = maxPosition2 xs + 1.31 * maxPosition3 xs
 
 evalRhythmicity23K
   :: (RealFrac a, Floating a) => a
   -> a
   -> [a]
   -> a
-evalRhythmicity23K k2 k3 xs = k2 * maxPosition2 xs + k3 * maxPosition3 xs
+evalRhythmicity23K k2 k3 xs = k2 * maxPosition2 xs + k3 * 1.31 * maxPosition3 xs
diff --git a/phonetic-languages-rhythmicity.cabal b/phonetic-languages-rhythmicity.cabal
--- a/phonetic-languages-rhythmicity.cabal
+++ b/phonetic-languages-rhythmicity.cabal
@@ -2,7 +2,7 @@
 -- For further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                phonetic-languages-rhythmicity
-version:             0.10.1.0
+version:             0.10.2.0
 synopsis:            Allows to estimate the rhythmicity properties for the text
 description:         Allows to estimate (somewhat to say, evaluate) the rhythmicity properties for the text. Inspired by the ancient Greek and Latin poetry.
 
