numeric_inverse 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6812f73ad5b41503887625a8f56000c69998949545fe730cfe4e2f914ea656b6
4
+ data.tar.gz: a81ca2caa95703d0831a27e429546e7cfbb24d71b8536fb376b6a24e168a6ac7
5
+ SHA512:
6
+ metadata.gz: 0dcc87bd3d88f0569b2ec72ff895b484f64eda6107dff9df584f79597465a10a3c2d1b5320913203b1043f2e740e28103b333001522f49ad58d03a20c25d0384
7
+ data.tar.gz: ca5d98880c6546f7ca6b89ee50535b676e584fbe3038703b21fb1a5daa264d32ae66e4be6ae264cf9cffef436ca94b13faf9b87e1145333feb45ead1b78a9664
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /Gemfile.lock
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.0
7
+ before_install: gem install bundler
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in numeric_inverse.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Masahiro Nomoto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # NumericInverse
2
+
3
+ This gem provides a method `Numeric#inverse` to get a (usual/modular) **multiplicative inverse** of a number readily.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'numeric_inverse'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install numeric_inverse
20
+
21
+ ## Usage
22
+
23
+ The module `NumericInverse` uses "[refinements](https://docs.ruby-lang.org/en/trunk/syntax/refinements_rdoc.html)" to define `#inverse` (alias `#inv`) locally. You should activate them with `Module#using` or `main.using`.
24
+
25
+ If you want to define them globally (without refinements), please require `numeric_inverse/ext` instead.
26
+
27
+ ```ruby
28
+ require "numeric_inverse"
29
+ p Rational(7, 22).inv #=> NoMethodError
30
+
31
+ using NumericInverse
32
+ p Rational(7, 22).inv #=> (22/7)
33
+ p Integer(16).inv #=> (1/16)
34
+ p Float(16).inv #=> 0.0625
35
+ p Complex(3, 4).inv #=> ((3/25)-(4/25)*i)
36
+
37
+ # arithmetic mean and harmonic mean
38
+ a = [9, 10, 15, 18]
39
+ p a.sum.quo(a.size) #=> (13/1)
40
+ p a.sum(&:inv).inv * a.size #=> (12/1)
41
+ ```
42
+
43
+ In addition, `Integer#inverse` returns its [modular multiplicative inverse](https://en.wikipedia.org/wiki/Modular_multiplicative_inverse) when a modulus is given.
44
+
45
+ ```ruby
46
+ require "numeric_inverse"
47
+ using NumericInverse
48
+
49
+ # multiplicative inverse of integers
50
+ p 63.inv #=> (1/63)
51
+ p 63.inv * 63 #=> (1/1)
52
+
53
+ # modular multiplicative inverse
54
+ p 63.inv(100) #=> 27
55
+ p 63.inv(100) * 63 #=> 1701
56
+ p 63.inv(100) * 63 % 100 #=> 1
57
+
58
+ p 64.inv(100) #=> ArgumentError: modulus 100 is not coprime to 64
59
+ ```
60
+
61
+ ## Development
62
+
63
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
64
+
65
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
66
+
67
+ ## Contributing
68
+
69
+ Bug reports and pull requests are welcome on GitHub at https://github.com/hmmnrst/numeric_inverse.
70
+
71
+ ## License
72
+
73
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "numeric_inverse"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,46 @@
1
+ ##
2
+ # @!parse class Integer < Numeric; end
3
+ #
4
+ class Integer
5
+ ##
6
+ # Returns its inverse.
7
+ #
8
+ # @overload inverse
9
+ # @return [Rational] inverse
10
+ # @overload inverse(m)
11
+ # @param m [Integer] modulus
12
+ # @return [Integer] modular multiplicative inverse
13
+ # @raise [ArgumentError] if +m+ is not coprime to +self+
14
+ #
15
+ # @example
16
+ # 63.inv #=> (1/63)
17
+ # 63.inv * 63 #=> (1/1)
18
+ #
19
+ # 63.inv(100) #=> 27
20
+ # 63.inv(100) * 63 #=> 1701
21
+ # 63.inv(100) * 63 % 100 #=> 1
22
+ #
23
+ # 64.inv(100) #=> ArgumentError: modulus 100 is not coprime to 64
24
+ #
25
+ def inverse(m = nil)
26
+ return Rational(1, self) if m.nil?
27
+
28
+ # extended Euclidean algorithm
29
+ a, b, x, x0 = self, m, 1, 0
30
+ until b.zero?
31
+ a, (q, b) = b, a.divmod(b)
32
+ x, x0 = x0, x - q * x0
33
+ end
34
+
35
+ # x is an inverse iff self.gcd(m) == 1
36
+ if a.abs != 1
37
+ raise ArgumentError,
38
+ "modulus #{m} is not coprime to #{self}"
39
+ end
40
+
41
+ x = -x if a < 0
42
+ x % m.abs # 0 <= x < |m|
43
+ end
44
+
45
+ alias inv inverse
46
+ end
@@ -0,0 +1,18 @@
1
+ class Numeric
2
+ ##
3
+ # Returns its inverse.
4
+ #
5
+ # @return [Numeric] inverse
6
+ #
7
+ # @example
8
+ # Rational(7, 22).inv #=> (22/7)
9
+ # Integer(16).inv #=> (1/16)
10
+ # Float(16).inv #=> 0.0625
11
+ # Complex(3, 4).inv #=> ((3/25)-(4/25)*i)
12
+ #
13
+ def inverse
14
+ 1.quo(self)
15
+ end
16
+
17
+ alias inv inverse
18
+ end
@@ -0,0 +1,2 @@
1
+ require "numeric_inverse/ext/numeric"
2
+ require "numeric_inverse/ext/integer"
@@ -0,0 +1,3 @@
1
+ module NumericInverse
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,39 @@
1
+ require "numeric_inverse/version"
2
+
3
+ ##
4
+ # Provides refinements of a method +Numeric#inverse+
5
+ # to get a (usual/modular) multiplicative inverse of a number readily.
6
+ #
7
+ module NumericInverse
8
+ refine Numeric do
9
+ def inverse
10
+ 1.quo(self)
11
+ end
12
+
13
+ alias inv inverse
14
+ end
15
+
16
+ refine Integer do
17
+ def inverse(m = nil)
18
+ return Rational(1, self) if m.nil?
19
+
20
+ # extended Euclidean algorithm
21
+ a, b, x, x0 = self, m, 1, 0
22
+ until b.zero?
23
+ a, (q, b) = b, a.divmod(b)
24
+ x, x0 = x0, x - q * x0
25
+ end
26
+
27
+ # x is an inverse iff self.gcd(m) == 1
28
+ if a.abs != 1
29
+ raise ArgumentError,
30
+ "modulus #{m} is not coprime to #{self}"
31
+ end
32
+
33
+ x = -x if a < 0
34
+ x % m.abs # 0 <= x < |m|
35
+ end
36
+
37
+ alias inv inverse
38
+ end
39
+ end
@@ -0,0 +1,29 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "numeric_inverse/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "numeric_inverse"
8
+ spec.version = NumericInverse::VERSION
9
+ spec.authors = ["Masahiro Nomoto"]
10
+ spec.email = ["hmmnrst@users.noreply.github.com"]
11
+
12
+ spec.summary = %q{Define `Numeric#inverse` to return its multiplicative inverse}
13
+ spec.description = %q{This gem provides a method `Numeric#inverse` to get a (usual/modular) multiplicative inverse of a number readily.}
14
+ spec.homepage = "https://github.com/hmmnrst/numeric_inverse"
15
+ spec.license = "MIT"
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler"
27
+ spec.add_development_dependency "rake"
28
+ spec.add_development_dependency "rspec", "~> 3.0"
29
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: numeric_inverse
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Masahiro Nomoto
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-01-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: This gem provides a method `Numeric#inverse` to get a (usual/modular)
56
+ multiplicative inverse of a number readily.
57
+ email:
58
+ - hmmnrst@users.noreply.github.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".rspec"
65
+ - ".travis.yml"
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/numeric_inverse.rb
73
+ - lib/numeric_inverse/ext.rb
74
+ - lib/numeric_inverse/ext/integer.rb
75
+ - lib/numeric_inverse/ext/numeric.rb
76
+ - lib/numeric_inverse/version.rb
77
+ - numeric_inverse.gemspec
78
+ homepage: https://github.com/hmmnrst/numeric_inverse
79
+ licenses:
80
+ - MIT
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubygems_version: 3.0.1
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: Define `Numeric#inverse` to return its multiplicative inverse
101
+ test_files: []